ArcFM Responder Mobile Developer Guide
Indeterminate Property (FeederChangedEvent)
Example 






Gets indeterminate features affected by an edit.
Syntax
'Declaration
 
Public ReadOnly Property Indeterminate As System.Collections.Generic.IEnumerable(Of FeatureKey)
'Usage
 
Dim instance As FeederChangedEvent
Dim value As System.Collections.Generic.IEnumerable(Of FeatureKey)
 
value = instance.Indeterminate
public System.Collections.Generic.IEnumerable<FeatureKey> Indeterminate {get;}
public read-only property Indeterminate: System.Collections.Generic.IEnumerable; 
public function get Indeterminate : System.Collections.Generic.IEnumerable
public: __property System.Collections.Generic.IEnumerable<FeatureKey*>* get_Indeterminate();
public:
property System.Collections.Generic.IEnumerable<FeatureKey^>^ Indeterminate {
   System.Collections.Generic.IEnumerable<FeatureKey^>^ get();
}

Property Value

The indeterminate features affected by an edit.
Remarks
Indeterminate features are any open switchable device for which feeder information has been excluded from trace results to improve FM2 performance. Feeder information for indeterminate features is not reported by the events API for these features. The current feeder information for an indeterminate feature can be retrieved by calling FeederInfoProvider.GetFeederInfo for the feature key of the indeterminate feature. If an indeterminate feature is returned by the Feeder Manager 2 Events API feeder information is only available for the network state after the edit occurs.
Example
Retrieve feeder information for all indeterminate features which may have been affected by the edit.
public void HandleEvent(FeederChangedEvent e)
{
    // Initialize the feeder info provider.
    var feederInfoProvider = new FeederInfoProvider(e.FeederWorkspace);
            
    foreach (var featureKey in e.Indeterminate)
    {
        // Retrieve the current feeder information for the indeterminate features.
        Trace.WriteLine(feederInfoProvider.GetFeederInfo(featureKey));
    }
}
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

FeederChangedEvent Class
FeederChangedEvent Members

Send Feedback