ArcFM Responder Mobile Developer Guide
GetFeederInfo Method
Example 






Gets the feeder information for the given Miner.Geodatabase.Network.FeatureKey.
Syntax
'Declaration
 
Public Function GetFeederInfo( _
   ByVal key As FeatureKey _
) As IFeederInfo(Of FeatureKey)
'Usage
 
Dim instance As FeederInfoProvider
Dim key As FeatureKey
Dim value As IFeederInfo(Of FeatureKey)
 
value = instance.GetFeederInfo(key)
public IFeederInfo<FeatureKey> GetFeederInfo( 
   FeatureKey key
)
public function GetFeederInfo( 
    key: FeatureKey
): IFeederInfo; 
public function GetFeederInfo( 
   key : FeatureKey
) : IFeederInfo;
public: IFeederInfo<FeatureKey*>* GetFeederInfo( 
   FeatureKey* key
) 
public:
IFeederInfo<FeatureKey^>^ GetFeederInfo( 
   FeatureKey^ key
) 

Parameters

key

Return Value

A FeederInfo object containing the feeder information for the given FeatureKey
Example
public string[] GetFeederIDs(FeederInfoProvider feederInfoProvider, IFeature feature)
{
    var featureKey = new FeatureKey(feature.Class.ObjectClassID, feature.OID);
    return feederInfoProvider.GetFeederInfo(featureKey).FeederIDs;
}
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