Get the given list value associated with a given key. If the value was not originally set using setList, this method will return a list with a single item containing the string representation of the original value. Any changes made to the IList object after calling getList will not be reflected in the LogEntry's value. In order to change the value of the list contents, setList() must be used.

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

Syntax

C#
public IList GetList(
	string key
)
Visual Basic
Public Function GetList ( _
	key As String _
) As IList
Visual C++
public:
IList^ GetList(
	String^ key
)

Parameters

key
Type: System..::..String
The String to use as the key of the element to get.

Return Value

Returns the list value associated with the given key.

See Also