Class RunOperationQuery
Rpc query to access operations running
Inherited Members
Namespace: Netmavryk.Rpc.Queries.Post
Assembly: Netmavryk.dll
Syntax
public class RunOperationQuery : RpcMethod
Methods
| Improve this Doc View SourcePostAsync(OperationContent[])
Runs an operation without signature checks and returns the operation result
Declaration
public Task<dynamic> PostAsync(params OperationContent[] contents)
Parameters
| Type | Name | Description |
|---|---|---|
| OperationContent[] | contents | Operation content |
Returns
| Type | Description |
|---|---|
| Task<System.Object> |
PostAsync(String, String, OperationContent[])
Runs an operation without signature checks and returns the operation result
Declaration
public Task<dynamic> PostAsync(string chain_id, string branch, params OperationContent[] contents)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | chain_id | Chain id |
| System.String | branch | Branch |
| OperationContent[] | contents | List of operation contents |
Returns
| Type | Description |
|---|---|
| Task<System.Object> |
PostAsync<T>(OperationContent[])
Runs an operation without signature checks and returns the operation result
Declaration
public Task<T> PostAsync<T>(params OperationContent[] contents)
Parameters
| Type | Name | Description |
|---|---|---|
| OperationContent[] | contents | Operation content |
Returns
| Type | Description |
|---|---|
| Task<T> |
Type Parameters
| Name | Description |
|---|---|
| T | Type of the object to deserialize to |
PostAsync<T>(String, String, OperationContent[])
Runs an operation without signature checks and returns the operation result
Declaration
public Task<T> PostAsync<T>(string chain_id, string branch, params OperationContent[] contents)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | chain_id | Chain id |
| System.String | branch | Branch |
| OperationContent[] | contents | List of operation contents |
Returns
| Type | Description |
|---|---|
| Task<T> |
Type Parameters
| Name | Description |
|---|---|
| T | Type of the object to deserialize to |