TargetTypeDictionaryAdd(String, Target) Method

Adds an element with the provided key and value to the IDictionaryTKey, TValue.

Definition

Namespace: Sandcastle.Tools.BuildComponents.Targets
Assembly: Sandcastle.Tools.BuildComponents (in Sandcastle.Tools.BuildComponents.dll) Version: 2024.12.21.0
public void Add(
	string key,
	Target value
)

Parameters

key  String
The object to use as the key of the element to add.
value  Target
The object to use as the value of the element to add.

Implements

IDictionaryTKey, TValueAdd(TKey, TValue)

Remarks

This method is not implemented. Use Add(ReferenceLinkType, TargetDictionary) to add target dictionaries and their associated reference link type

Exceptions

ArgumentNullExceptionkey is .
ArgumentExceptionAn element with the same key already exists in the IDictionaryTKey, TValue.
NotSupportedExceptionThe IDictionaryTKey, TValue is read-only.

See Also