Gets or sets the key used to represent the value

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

Syntax

C#
public string Key { get; set; }
Visual Basic (Declaration)
Public Property Key As String
Visual C++
public:
property String^ Key {
	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 "key" portion.

Examples

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

See Also