Table of Contents

Method AddName

Namespace
BitMiracle.Docotic.Pdf
Assembly
BitMiracle.Docotic.Pdf.dll

AddName(string, string)

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

public void AddName(string key, string value)

Parameters

key string

The key of the element to add.

value string

The value of the name object.

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.

Exceptions

ArgumentNullException

The key or value is null.

ArgumentException

An element with the same key already exists in the dictionary.