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


IPlugInWorkspaceHelper.DatasetNames Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IP > IPlugInWorkspaceHelper Interface > IPlugInWorkspaceHelper.DatasetNames Property
ArcGIS Developer Help

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