Initializes a new ReflectionCommandSerializationProvider instance.

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

Syntax

C#
public ReflectionCommandSerializationProvider(
	string nameValueDelimiter,
	string propertyDelimiter
)
Visual Basic (Declaration)
Public Sub New ( _
	nameValueDelimiter As String, _
	propertyDelimiter As String _
)
Visual C++
public:
ReflectionCommandSerializationProvider(
	String^ nameValueDelimiter, 
	String^ propertyDelimiter
)

Parameters

nameValueDelimiter
Type: System..::.String
String used to delimit property names and values when constructing the state string.
propertyDelimiter
Type: System..::.String
String used to delimit properties (each of which is represented by a name/value pair) when constructing the state string.

Exceptions

ExceptionCondition
System..::.ArgumentException if nameValueDelimiter or propertyDelimiter is null or empty.

See Also