Property this
- Namespace
- BitMiracle.Docotic.Pdf
- Assembly
- BitMiracle.Docotic.Pdf.dll
this[string]
Gets the value associated with the specified key.
public CosObject this[string key] { get; }
Parameters
key
stringThe key of the value to get.
Property Value
- CosObject
The value associated with the specified key. If the specified key is not found, a get operation throws a KeyNotFoundException.
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.
Exceptions
- ArgumentNullException
The key is
null
.- KeyNotFoundException
The key does not exist in the dictionary.