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


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

IPlugInFileOperationsClass Interface

Provides access to members for copying, deleting and renaming classes in a dataset helper.

Product Availability

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

Description

A plug-in dataset helper can implement IPlugInFileOperationsClass to support copy, rename and delete for feature classes within a feature dataset.

Members

Name Description
Method CanCopy True if this dataset can be copied.
Method CanDelete True if this dataset can be deleted.
Method CanRename True if this dataset can be renamed.
Method Copy Copies this dataset to a new dataset with the specified name.
Method Delete Deletes this dataset.
Method Rename Renames this dataset.

Classes that implement IPlugInFileOperationsClass

Classes Description

Remarks

If your implementation does not support one of Copy, Rename or Delete, be sure to return E_NOTIMPL from the method, as the ArcGIS framework does not guarantee calling CanCopy, CanRename or CanDelete before these methods.

See Also

IPlugInFileOperations Interface