ArcFM Desktop Developer Guide
FeederInfoProvider Constructor
Example 


The connection properties to get feeder information from.
Creates an instance of the FeederInfoProvider for the given connection properties.

FeederInfoProvider produces correct results when used within the scope of Esri's OnStopEditOperation event, but it can't do so when used within the scope of an AutoUpdater. To successfully process features whose feeder information changes as a result of an edit operation, we recommend subscribing to FeederChangedEvent. Alternatively, you can use your custom AutoUpdator implementation to track features of interest (i.e., those that you would be querying via FeederInfoProvider), and then submit those features to FeederInfoProvider from within a separate event handler for the OnStopEditOperation event.

Syntax
'Declaration
 
Public Function New( _
   ByVal properties As IConnectionProperties _
)
'Usage
 
Dim properties As IConnectionProperties
 
Dim instance As New FeederInfoProvider(properties)
public FeederInfoProvider( 
   IConnectionProperties properties
)

Parameters

properties
The connection properties to get feeder information from.
Example
public FeederInfoProvider GetFeederInfoProvider(IWorkspace workspace)
{
    var feederInfoProvider = new FeederInfoProvider(new ConnectionProperties(workspace));
            
    return feederInfoProvider;
}
Requirements

Target Platforms: Windows XP SP3 (32-bit and 64-bit), Windows 7 (32-bit and 64-bit)

Not all Operating Systems are supported on all products. Visit the ArcFM Solution Supported Versions page for full details.

See Also

Reference

FeederInfoProvider Class
FeederInfoProvider Members

 

 


Send Comment