C# Class TeamSpeak3QueryApi.Net.ParameterValue

Represents the value of a parameter which consits of a single value.
Inheritance: IParameterValue
Show file Open project: nikeee/TeamSpeak3QueryAPI Class Usage Examples

Public Methods

Method Description
CreateParameterLine ( string parameterName ) : string

Creates an escaped string representation of the parameter.

ParameterValue ( ) : System.Globalization

Creates a new instance of T:TeamSpeak3QueryApi.Net.ParameterValue using as a value.

ParameterValue ( bool value ) : System.Globalization

Creates a new instance of T:TeamSpeak3QueryApi.Net.ParameterValue using the specified T:System.Boolean as a value.

ParameterValue ( int value ) : System.Globalization

Creates a new instance of T:TeamSpeak3QueryApi.Net.ParameterValue using the specified T:System.Int32 as a value.

ParameterValue ( string value ) : System.Globalization

Creates a new instance of T:TeamSpeak3QueryApi.Net.ParameterValue using the specified T:System.String as a value.

ToString ( ) : string

Returns a string that represents the current object.

Method Details

CreateParameterLine() public method

Creates an escaped string representation of the parameter.
public CreateParameterLine ( string parameterName ) : string
parameterName string
return string

ParameterValue() public method

Creates a new instance of T:TeamSpeak3QueryApi.Net.ParameterValue using as a value.
public ParameterValue ( ) : System.Globalization
return System.Globalization

ParameterValue() public method

Creates a new instance of T:TeamSpeak3QueryApi.Net.ParameterValue using the specified T:System.Boolean as a value.
public ParameterValue ( bool value ) : System.Globalization
value bool The value.
return System.Globalization

ParameterValue() public method

Creates a new instance of T:TeamSpeak3QueryApi.Net.ParameterValue using the specified T:System.Int32 as a value.
public ParameterValue ( int value ) : System.Globalization
value int The value.
return System.Globalization

ParameterValue() public method

Creates a new instance of T:TeamSpeak3QueryApi.Net.ParameterValue using the specified T:System.String as a value.
public ParameterValue ( string value ) : System.Globalization
value string The value.
return System.Globalization

ToString() public method

Returns a string that represents the current object.
public ToString ( ) : string
return string