Returns a string repesenting the specified dictionary of serialized property values.

Namespace:  Endeca.Data
Assembly:  Endeca.Data (in Endeca.Data.dll) Version: 2.1.3.0 (2.1.3.622)

Syntax

C#
protected virtual string JoinCommandState(
	IDictionary<string, string> serializedPropertyValues
)
Visual Basic (Declaration)
Protected Overridable Function JoinCommandState ( _
	serializedPropertyValues As IDictionary(Of String, String) _
) As String
Visual C++
protected:
virtual String^ JoinCommandState(
	IDictionary<String^, String^>^ serializedPropertyValues
)

Parameters

serializedPropertyValues
Type: System.Collections.Generic..::.IDictionary<(Of <(String, String>)>)
Dictionary containing serialized property values.

Remarks

This method produces a string in which the key and value in each pair are delimited by the value of NameValueDelimiter, and the pairs are delimited by the value of PropertyDelimiter.

See Also