Set the given key to the list value. Note that the values in the list will all be converted to strings, so getList will return a list of Strings.

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

Syntax

C#
public void AddList(
	string key,
	IList value
)
Visual Basic
Public Sub AddList ( _
	key As String, _
	value As IList _
)
Visual C++
public:
void AddList(
	String^ key, 
	IList^ value
)

Parameters

key
Type: System..::..String
The String to use as the key of the element to set.
value
Type: System.Collections..::..IList
The IList to use as the value of the element to add.

See Also