ArcObjects Library Reference (GeoDatabase)  

IPlugInWorkspaceHelper.OpenDataset Method

Opens a dataset helper for the dataset identified by localName.

[Visual Basic .NET]
Public Function OpenDataset ( _
    ByVal localName As String _
) As IPlugInDatasetHelper
[C#]
public IPlugInDatasetHelper OpenDataset (
    string localName
);
[C++]
HRESULT OpenDataset(
  BSTR localName,
  IPlugInDatasetHelper** datasetHelper
);
[C++]

Parameters

localName [in]   localName is a parameter of type BSTR datasetHelper [out, retval]

  datasetHelper is a parameter of type IPlugInDatasetHelper

Product Availability

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

Description

Creates and initializes an instance of the dataset helper class and returns its IPlugInDatasetHelper pointer. If localName is not a local name of a dataset, the method should fail and return a null pointer.

See Also

IPlugInWorkspaceHelper Interface