Initializes a new instance of the CommandParameter class allowing different values for Name and PropertyName.

Namespace: Simol
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
public CommandParameter(
	string name,
	string propertyName,
	Object value
)
Visual Basic
Public Sub New ( _
	name As String, _
	propertyName As String, _
	value As Object _
)
Visual C++
public:
CommandParameter(
	String^ name, 
	String^ propertyName, 
	Object^ value
)

Parameters

name
Type: System..::..String
The parameter name.
propertyName
Type: System..::..String
Name of the item property to use for formatting purposes. Optional parameter. Required only if the item property name and parameter name are different.
value
Type: System..::..Object
The parameter value. The provided value is automatically added to the Values list. Null is allowed.

See Also