메소드 | 설명 | |
---|---|---|
AddInput ( |
Add an input argument to an invocation
|
|
AddOutput ( |
Add an output argument to an invocation
|
|
Error ( |
Check whether the invocation failed Only intended for use in the invocation complete callback |
|
OutputBinary ( |
Utility to retrieve the value of a binary type output argument Must only be called once per output argument. (The first call extracts the binary data from the underlying native object so later calls would return an empty string.) |
|
OutputBool ( |
Utility to retrieve the value of a boolean type output argument
|
|
OutputInt ( |
Utility to retrieve the value of an integer type output argument
|
|
OutputString ( |
Utility to retrieve the value of a string type output argument Must only be called once per output argument. (The first call extracts the string data from the underlying native object so later calls would return an empty string.) |
|
OutputUint ( |
Utility to retrieve the value of an unsigned integer type output argument
|
메소드 | 설명 | |
---|---|---|
AsyncComplete ( |
||
CpInvocationAddInput ( |
||
CpInvocationAddOutput ( |
||
CpInvocationError ( |
||
CpInvocationGetOutputBinary ( |
||
CpInvocationGetOutputString ( |
||
CpInvocationOutputBool ( |
||
CpInvocationOutputInt ( |
||
CpInvocationOutputUint ( |
||
CpServiceInvocation ( |
||
Handle ( ) : |
||
Invocation ( |
Constructor. Not intended for external use (use CpService.Invocation instead)
|
|
OhNetFree ( |
public AddInput ( |
||
aArgument | Input argument being added. Ownership passes to the invocation | |
리턴 | void |
public AddOutput ( |
||
aArgument | Output argument being added. Ownership passes to the invocation | |
리턴 | void |
public static Error ( |
||
aHandle | ||
aErrorCode | uint | |
aErrorDesc | string | |
리턴 | bool |
public static OutputBinary ( |
||
aHandle | Invocation handle | |
aIndex | uint | Zero-based index into array of output arguments. /// Must refer to an ArgumentString. |
리턴 | byte[] |
public static OutputBool ( |
||
aHandle | Invocation handle | |
aIndex | uint | Zero-based index into array of output arguments. /// Must refer to an ArgumentBool. |
리턴 | bool |
public static OutputInt ( |
||
aHandle | Invocation handle | |
aIndex | uint | Zero-based index into array of output arguments. /// Must refer to an ArgumentInt. |
리턴 | int |
public static OutputString ( |
||
aHandle | Invocation handle | |
aIndex | uint | Zero-based index into array of output arguments. /// Must refer to an ArgumentString. |
리턴 | String |
public static OutputUint ( |
||
aHandle | Invocation handle | |
aIndex | uint | Zero-based index into array of output arguments. /// Must refer to an ArgumentUint. |
리턴 | uint |