Gets or sets the value represented by the key

Namespace: Asi.iBO
Assembly: Asi.iBO (in Asi.iBO.dll) Version: 15.1.3.0

Syntax

C#
public string Value { get; set; }
Visual Basic
Public Property Value As String
	Get
	Set
Visual C++
public:
property String^ Value {
	String^ get ();
	void set (String^ value);
}

Field Value

Any string value.

Remarks

This struct is typically used to represent "key=value" type pairs. This property is the "value" portion.

Examples

If the pair being represented was "UserName=Rob" this property would return "Rob".

See Also