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


IGPUtilities.OpenDataset Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geoprocessing > ESRI.ArcGIS.Geoprocessing > Interfaces > IG > IGPUtilities Interface > IGPUtilities.OpenDataset Method
ArcGIS Developer Help

IGPUtilities.OpenDataset Method

Opens the dataset object specified by the given geoprocessing value object.

[Visual Basic .NET]
Public Function OpenDataset ( _
    ByVal pValue As IGPValue _
) As IDataset
[C#]
public IDataset OpenDataset (
    IGPValue pValue
);
[C++]
HRESULT OpenDataset(
  IGPValue* pValue
);
[C++]
Parameters
pValue [in]

pValue is a parameter of type IGPValue*

Product Availability

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

Remarks

The OpenDataset method takes in a GPValue object and returns and opens the specified Dataset object. It is typically used inside the Execute method to open the input data.

See Also

IGPUtilities Interface