MetadataSignatureCollection

MetadataSignatureCollection class

Collection of Metadata signature objects.

public class MetadataSignatureCollection : ICloneable, IEnumerable<MetadataSignature>

Constructors

Name Description
MetadataSignatureCollection() Creates Collection of Metadata signature.

Properties

Name Description
Count { get; } Gets number of items in the collection.
Item { get; } Returns a MetadataSignature object by the name of the property. (2 indexers)

Methods

Name Description
Add(MetadataSignature) Add Metadata Signature object to collection.
AddRange(IEnumerable<MetadataSignature>) Add Metadata Signature collection.
Clear() Removes all items from the collection.
Clone() Clone Metadata Signature Collection class with Metadata Signature Items.
Contains(string) Returns true if a Metadata with the specified name exists in the collection.
GetEnumerator() Returns enumerator.
IndexOf(string) Gets the index of a property by name.
Remove(string) Removes a Metadata Signature with the specified name from the collection.
RemoveAt(int) Removes a Metadata Signature at the specified index.

See Also