ArcObjects Library Reference (GeoDatabase)  

IGeometricNetworkErrorDetection.CreateErrorTable Method

Creates a non-versioned table that can be used to persist error information.

[Visual Basic .NET]
Public Sub CreateErrorTable ( _
    ByVal Name As String, _
    ByRef ErrorTable As ITable _
)
[C#]
public void CreateErrorTable (
    string Name,
    ref ITable ErrorTable
);
[C++]
HRESULT CreateErrorTable(
  BSTR Name,
  ITable** ErrorTable
);
[C++]

Parameters

Name [in]   Name is a parameter of type BSTR ErrorTable [out]

  ErrorTable is a parameter of type ITable

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

The CreateErrorTable method is used to create a table that can be used to persist information related to inconsistent network features (using a fixed table schema) with the specified name. Such network error information can only be persisted by the geometric network in a table with this schema. This table is user managed and should remain unversioned.

See Also

IGeometricNetworkErrorDetection Interface