Represents a server side code entry in KiiCloud.
See Also: Inherited members from object.
|
Execute
(KiiServerCodeEntryArgument)Execute this server code entry and wait for completion. |
|
|
Execute
(KiiServerCodeEntryArgument, KiiServerCodeEntryCallback)Asynchronous version of KiiServerCodeEntry.Execute(KiiServerCodeEntryArgument). |
Gets the name of the entry.Syntax
public string EntryName { get; }Value
The name of the entry.Remarks
Requirements
Namespace: KiiCorp.Cloud.Storage
Assembly: KiiCloudStorageSDK (in KiiCloudStorageSDK.dll)
Assembly Versions: 3.2.10.0
Execute this server code entry and wait for completion.Syntax
public KiiServerCodeExecResult Execute (KiiServerCodeEntryArgument argument)Parameters
- argument
- The argument that will be passed to the entry of script in the cloud. If null is specified, no argument will be passed to the script.
Returns
Result of execution includes JsonObject returned from specified server code entry in KiiCloud.Exceptions
Type Reason KiiCorp.Cloud.Storage.BadRequestException Is thrown when an execution is failed. Remarks
This api access to server. Should not be executed in UI/Main thread.Requirements
Namespace: KiiCorp.Cloud.Storage
Assembly: KiiCloudStorageSDK (in KiiCloudStorageSDK.dll)
Assembly Versions: 3.2.10.0
Asynchronous version of KiiServerCodeEntry.Execute(KiiServerCodeEntryArgument).Syntax
Parameters
- argument
- The argument that will be passed to the entry of script in the cloud. If null is specified, no argument will be passed to the script.
- callback
- Callback.
Remarks
This API will be executed on background thread.Requirements
Namespace: KiiCorp.Cloud.Storage
Assembly: KiiCloudStorageSDK (in KiiCloudStorageSDK.dll)
Assembly Versions: 3.2.10.0