C# Class TeamSpeak3QueryApi.Net.Parameter

Represents a Query API parameter.
Show file Open project: nikeee/TeamSpeak3QueryAPI Class Usage Examples

Public Methods

Method Description
FromArray ( string sourceArray ) : Parameter

Creates a new instance of T:TeamSpeak3QueryApi.Net.Parameter using a string array.

GetEscapedRepresentation ( ) : string
Parameter ( string name, IParameterValue value ) : System

Creates a new instance of T:TeamSpeak3QueryApi.Net.Parameter.

Parameter ( string name, ParameterValue value ) : System

Creates a new instance of T:TeamSpeak3QueryApi.Net.Parameter.

Parameter ( string name, ParameterValueArray values ) : System

Creates a new instance of T:TeamSpeak3QueryApi.Net.Parameter.

Method Details

FromArray() public static method

Creates a new instance of T:TeamSpeak3QueryApi.Net.Parameter using a string array.
public static FromArray ( string sourceArray ) : Parameter
sourceArray string The first item represents the name of the parameter, the rest is used as a value.
return Parameter

GetEscapedRepresentation() public method

public GetEscapedRepresentation ( ) : string
return string

Parameter() public method

Creates a new instance of T:TeamSpeak3QueryApi.Net.Parameter.
public Parameter ( string name, IParameterValue value ) : System
name string The name of the Query API parameter.
value IParameterValue The value of the Query API parameter.
return System

Parameter() public method

Creates a new instance of T:TeamSpeak3QueryApi.Net.Parameter.
public Parameter ( string name, ParameterValue value ) : System
name string The name of the Query API parameter.
value ParameterValue The value of the Query API parameter.
return System

Parameter() public method

Creates a new instance of T:TeamSpeak3QueryApi.Net.Parameter.
public Parameter ( string name, ParameterValueArray values ) : System
name string The name of the Query API parameter.
values ParameterValueArray The array value of the Query API parameter.
return System