CosDictionary.AddName Method

Adds the specified key and a new CosName object to the dictionary.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public void AddName(
	string key,
	string value
)
VB
Public Sub AddName ( 
	key As String,
	value As String
)

Parameters

key
Type: System.String
The key of the element to add.
value
Type: System.String
The value of the name object.

Exceptions

ExceptionCondition
ArgumentNullException The key or value is null.
ArgumentException An element with the same key already exists in the dictionary.

Remarks

The key must not be null and should not start with a leading slash. Characters in the key should not be escaped. Empty string (string.Empty) is a valid key.

The value must not be null and should not start with a leading slash. Characters in the value should not be escaped. Empty string (string.Empty) is a valid value.

See Also