Adds a key/value pair to this LogEntry object.

Namespace: Endeca.Logging
Assembly: Endeca.Logging (in Endeca.Logging.dll) Version: 6.1.3.0

Syntax

C#
public virtual void Add(
	Object key,
	Object value
)
Visual Basic
Public Overridable Sub Add ( _
	key As Object, _
	value As Object _
)
Visual C++
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)

See Also