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


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

INAResult.Initialize Method

Set up for a new analysis.

[Visual Basic .NET]
Public Sub Initialize ( _
    ByVal Name As String, _
    ByVal NAContext As INAContext, _
    ByVal isScratch As Boolean _
)
[C#]
public void Initialize (
    string Name,
    INAContext NAContext,
    bool isScratch
);
[C++]
HRESULT Initialize(
  BSTR Name,
  INAContext* NAContext,
  VARIANT_BOOL isScratch
);
[C++]
Parameters
Name [in]

Name is a parameter of type BSTR NAContext [in]
NAContext is a parameter of type INAContext* isScratch [in]
isScratch is a parameter of type bool

Product Availability

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

Remarks

This method has been deprecated and should not be used.  Instead, use INAResult2.Create to initialize a result object after creating it.

See Also

INAResult Interface