ArcObjects Library Reference (GeoDatabase)  

IPlugInMetadata.Metadata Property

A property set containing the metadata for the indicated dataset.

[Visual Basic .NET]
Public Function get_Metadata ( _
    ByVal localName As String _
) As IPropertySet
[Visual Basic .NET]
Public Sub set_Metadata ( _
    ByVal localName As String, _
    ByVal Metadata As IPropertySet _
)
[C#]
public IPropertySet get_Metadata (
    string localName
);
[C#]
public void set_Metadata (
    string localName,
    IPropertySet Metadata
);
[C++]
HRESULT get_Metadata(
  BSTR localName,
  IPropertySet** Metadata
);
[C++]
HRESULT put_Metadata(
  BSTR localName,
  IPropertySet* Metadata
);
[C++]

Parameters

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

  Metadata is a parameter of type IPropertySet

localName [in]   localName is a parameter of type BSTR Metadata [in]

  Metadata is a parameter of type IPropertySet

Product Availability

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

Description

Returns the metadata for the named dataset as a property set. The co-class of the property set should be XMLPropertySet.

See Also

IPlugInMetadata Interface