ArcFM Responder Mobile Developer Guide
FeederIDs Property (FeederInfoProvider)
Example 






Returns the set of all feeder IDs and their source Miner.Geodatabase.Network.FeatureKey.
Syntax
'Declaration
 
Public ReadOnly Property FeederIDs 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.FeederIDs
public System.Collections.Generic.IDictionary<string,FeatureKey> FeederIDs {get;}
public read-only property FeederIDs: System.Collections.Generic.IDictionary; 
public function get FeederIDs : System.Collections.Generic.IDictionary
public: __property System.Collections.Generic.IDictionary<string*,FeatureKey*>* get_FeederIDs();
public:
property System.Collections.Generic.IDictionary<String^,FeatureKey^>^ FeederIDs {
   System.Collections.Generic.IDictionary<String^,FeatureKey^>^ get();
}
Example
Create a list of all feeders in a workspace.
public List<string> GetFeederIDs(IWorkspace workspace)
{
    var connectionProperties = new ConnectionProperties(workspace);
    var feederInfoProvider = new FeederInfoProvider(connectionProperties);
            
    return feederInfoProvider.FeederIDs.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