[This is preliminary documentation and is subject to change.]

Gets metadata of particular type

Namespace: Tools.MetadataT
Assembly: Tools.Metadata (in Tools.Metadata.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
IMetadata this[
	string MetadataName
] { get; }
Visual Basic
ReadOnly Default Property Metadata ( _
	MetadataName As String _
) As IMetadata
	Get
Visual C++
property IMetadata^ default[String^ MetadataName] {
	IMetadata^ get (String^ MetadataName);
}
F#
abstract Metadata : IMetadata
JScript
JScript does not support indexed properties.

Parameters

MetadataName
Type: System..::..String
Name of metadata to get (see GetSupportedMetadataNames()()()() for possible values)

Return Value

Metadata of requested type; or null if metadata of type MetadataName are not contained in this instance or are not supported by this provider.

See Also