DirtyFlagMap Add Method Quartz.NET API Documentation
When implemented by a class, adds an element with the provided key and value to the IDictionary.

Namespace: Quartz.Util
Assembly: Quartz (in Quartz.dll) Version: 1.0.3.3
Syntax

public virtual void Add(
	Object key,
	Object value
)

Parameters

key
Type: System Object
The Object to use as the key of the element to add.
value
Type: System Object
The Object to use as the value of the element to add.

Implements

IDictionary Add(Object, Object)
Exceptions

ExceptionCondition
ArgumentNullExceptionkey is  .
ArgumentException An element with the same key already exists in the IDictionary.
NotSupportedException

The IDictionary is read-only.

-or-

The IDictionary has a fixed size.

See Also