ArcFM Responder Mobile Developer Guide
SubfeederIDs Property (FeederInfoProvider)
Example 






Returns the set of all subfeeder ids and their source Miner.Geodatabase.Network.FeatureKey. The subfeederID is the FeederName, if configured. Otherwise, it's the CircuitSourceID.
Syntax
'Declaration
 
Public ReadOnly Property SubfeederIDs As System.Collections.Generic.IDictionary(Of String,FeatureKey)
'Usage
 
Dim instance As FeederInfoProvider
Dim value As System.Collections.Generic.IDictionary(Of String,FeatureKey)
 
value = instance.SubfeederIDs
public System.Collections.Generic.IDictionary<string,FeatureKey> SubfeederIDs {get;}
public read-only property SubfeederIDs: System.Collections.Generic.IDictionary; 
public function get SubfeederIDs : System.Collections.Generic.IDictionary
public: __property System.Collections.Generic.IDictionary<string*,FeatureKey*>* get_SubfeederIDs();
public:
property System.Collections.Generic.IDictionary<String^,FeatureKey^>^ SubfeederIDs {
   System.Collections.Generic.IDictionary<String^,FeatureKey^>^ get();
}
Example
Return a list of all subfeeders in a given workspace.
public List<string> GetSubFeederIDs(IWorkspace workspace)
{
    var connectionProperties = new ConnectionProperties(workspace);
    var feederInfoProvider = new FeederInfoProvider(connectionProperties);
            
    return feederInfoProvider.SubfeederIDs.Select(kvp => kvp.Key).ToList();
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

FeederInfoProvider Class
FeederInfoProvider Members

Send Feedback