ArcObjects Library Reference (GeoDatabase)  

IPlugInWorkspaceHelper.DatasetNames Property

An array of dataset helpers for each dataset in the workspace.

[Visual Basic .NET]
Public Function get_DatasetNames ( _
    ByVal DatasetType As esriDatasetType _
) As IArray
[C#]
public IArray get_DatasetNames (
    esriDatasetType DatasetType
);
[C++]
HRESULT get_DatasetNames(
  esriDatasetType DatasetType,
  IArray** DatasetNames
);
[C++]

Parameters

DatasetType [in]

  DatasetType is a parameter of type esriDatasetType

DatasetNames [out, retval]

  DatasetNames is a parameter of type IArray

Product Availability

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

Description

Returns an array of IPlugInDatasetInfo interfaces for datasets in this workspace. If datasetType is esriDTall, returns interfaces for all the datasets, otherwise returns just interfaces for the datasets of type datasetType. If there are no datasets to return, the method succeeds and returns an empty array.

See Also

IPlugInWorkspaceHelper Interface