Метод | Описание | |
---|---|---|
Call ( string func, int version = 1, string>.Dictionary |
Manually calls the specified Web API function with the provided details.
|
|
Dispose ( ) : void |
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
|
|
TryInvokeMember ( |
Provides the implementation for operations that invoke a member. Classes derived from the T:System.Dynamic.DynamicObject class can override this method to specify dynamic behavior for operations such as calling a method. This method should not be called directly, it is called through dynamic method calls.
|
Метод | Описание | |
---|---|---|
Interface ( string iface, string apiKey ) : System |
public Call ( string func, int version = 1, string>.Dictionary |
||
func | string | The function name to call. |
version | int | The version of the function to call. |
args | string>.Dictionary | A dictionary of string key value pairs representing arguments to be passed to the API. |
method | string | The http request method. Either "POST" or "GET". |
secure | bool | if set to |
Результат |
public TryInvokeMember ( |
||
binder |
/// Provides information about the dynamic operation.
/// The binder.Name property provides the name of the member on which the dynamic operation is performed.
/// For example, for the statement sampleObject.SampleMethod(100), where sampleObject is an instance of the
/// class derived from the |
|
args | object |
/// The arguments that are passed to the object member during the invoke operation. For example,
/// for the statement sampleObject.SampleMethod(100), where sampleObject is derived from the
/// |
result | object | The result of the member invocation. |
Результат | bool |