RPCParameters Class

RPC parameter

Definition

Namespace: TCX.Configuration.Interop
Assembly: 3cxpscomcpp2 (in 3cxpscomcpp2.dll) Version: 20.0.1
C#
public class RPCParameters : IDisposable, 
	IEnumerable
Inheritance
Object    RPCParameters
Implements
IEnumerable, IDisposable

Constructors

RPCParametersInitializes a new instance of the RPCParameters class

Methods

Add(String, Byte) adds binary value (array of bytes) parameter
Add(String, Int32) adds 32 bit parameter
Add(String, Int64) adds 64 bit parameter
Add(String, String) Adds string parameter
Add(String, UInt32)Add(String, Int32)
Add(String, UInt64)Add(String, Int64)
Add(String, RPCParameters) Adds other RPCParameters as a named parameter
Dispose Disposes the object
Get(String, Byte) returns value of binary array. if parameter is not binary array or not set at all return false and assigns value to empty array.
Get(String, Int32) returns value of 32 bit parameter as int value. if value is not set as a 32-bit (or not set at all), returns 0
Get(String, Int64) returns value of 64 bit parameter as long value. if value is not set as a 64-bit (or not set at all), returns 0
Get(String, String) provides value of string parameter. if value is not set as string parameter returns empty string
Get(String, UInt32) returns value of 32 bit parameter as int value. if value is not set as a 32-bit (or not set at all), returns 0
Get(String, UInt64) returns value of 32 bit parameter as int value. if value is not set as a 32-bit (or not set at all), returns 0
GetEnumerator Enumerator is not implemented for this type of object.

See Also