This document is archived and information here might be outdated.  Recommended version.


INATraversalResultEdit2.WriteJunctionBufferEx Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > NetworkAnalyst > ESRI.ArcGIS.NetworkAnalyst > Interfaces > IN > INATraversalResultEdit2 Interface > INATraversalResultEdit2.WriteJunctionBufferEx Method
ArcGIS Developer Help

INATraversalResultEdit2.WriteJunctionBufferEx Method

Make a new junction in the result from the feature buffer.

[Visual Basic .NET]
Public Sub WriteJunctionBufferEx ( _
    ByVal featureBuffer As IFeatureBuffer, _
    ByVal SourceID As Integer, _
    ByVal SourceOID As Integer, _
    ByVal EID As Integer, _
    ByVal Point As IPoint _
)
[C#]
public void WriteJunctionBufferEx (
    IFeatureBuffer featureBuffer,
    int SourceID,
    int SourceOID,
    int EID,
    IPoint Point
);
[C++]
HRESULT WriteJunctionBufferEx(
  IFeatureBuffer* featureBuffer,
  long SourceID,
  long SourceOID,
  long EID,
  IPoint* Point
);
[C++]
Parameters
featureBuffer [in]

featureBuffer is a parameter of type IFeatureBuffer* SourceID [in]
SourceID is a parameter of type long SourceOID [in]
SourceOID is a parameter of type long EID [in]
EID is a parameter of type long Point [in]
Point is a parameter of type IPoint*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires Network Analyst Extension.

Remarks

WriteJunctionBufferEx populates the input FeatureBuffer with the other input parameters.  This FeatureBuffer can then be passed to an insert cursor on the traversal result feature class.

See Also

INATraversalResultEdit2 Interface