Produces a pair representing the serialized form of the specified key and value in the specified collection. Returns null if the extended parameter should not be included in the command state string.

Namespace:  Endeca.Data
Assembly:  Endeca.Data (in Endeca.Data.dll) Version: 2.1.1.0 (2.1.1.620)

Syntax

C#
protected virtual Nullable<KeyValuePair<string, string>> SerializeExtendedParameter(
	string key,
	NameValueCollection extendedState
)
Visual Basic (Declaration)
Protected Overridable Function SerializeExtendedParameter ( _
	key As String, _
	extendedState As NameValueCollection _
) As Nullable(Of KeyValuePair(Of String, String))
Visual C++
protected:
virtual Nullable<KeyValuePair<String^, String^>> SerializeExtendedParameter(
	String^ key, 
	NameValueCollection^ extendedState
)

Parameters

key
Type: System..::.String
The key specifying the key/value pair to serialize.
extendedState
Type: System.Collections.Specialized..::.NameValueCollection
Collection containing the key/value pair to serialize.

See Also