XmpMetadata.Add

Add(string, XmpValue)

Adds value to metadata.

public void Add(string key, XmpValue value)
ParameterTypeDescription
keyStringThe key to add.
valueXmpValueValue which will be added.

See Also


Add(string, object)

Adds value to metadata.

public void Add(string key, object value)
ParameterTypeDescription
keyStringThe key to add.
valueObjectValue which will be added.

See Also


Add(KeyValuePair<string, XmpValue>)

Adds pair with key and value into the dictionary.

public void Add(KeyValuePair<string, XmpValue> item)
ParameterTypeDescription
itemKeyValuePair`2Item to be added.

See Also