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

Gets all predefined names for metadata keys

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

Syntax

C#
IEnumerable<string> GetPredefinedNames()
Visual Basic
Function GetPredefinedNames As IEnumerable(Of String)
Visual C++
IEnumerable<String^>^ GetPredefinedNames()
F#
abstract GetPredefinedNames : unit -> IEnumerable<string> 
JScript
function GetPredefinedNames() : IEnumerable<String>

Return Value

Enumeration containing all predefined names of metadata items for this metadada format. Never returns null; may return an empty enumeration.

Remarks

Metadata format may support 2 formats of retrieving of metadata values: By key and by name. The by-name format is optional. Keys are typically computer-friendly strings (like tag numbers or addresses) and metedata format may support values with non-predefined keys. Names are typically human-friendly (not-localized) string (like names) and only predefined names are supported (if any). Each name must have its corresponding key. Names are only aliases to certain important keys.

See Also