Class ParseOperationsQuery
Rpc query to access operations parsing
Inherited Members
Namespace: Netezos.Rpc.Queries.Post
Assembly: Netezos.dll
Syntax
public class ParseOperationsQuery : RpcMethod
Methods
| Improve this Doc View SourcePostAsync(List<Object>, Nullable<Boolean>)
Parses operations and returns the operations content
Declaration
public Task<dynamic> PostAsync(List<object> operations, bool? checkSignature = null)
Parameters
Type | Name | Description |
---|---|---|
List<System.Object> | operations | List of operation |
System.Nullable<System.Boolean> | checkSignature | Check signature (optional) |
Returns
Type | Description |
---|---|
Task<System.Object> |
PostAsync<T>(List<Object>, Nullable<Boolean>)
Parses operations and returns the operations content
Declaration
public Task<T> PostAsync<T>(List<object> operations, bool? checkSignature = null)
Parameters
Type | Name | Description |
---|---|---|
List<System.Object> | operations | List of operation |
System.Nullable<System.Boolean> | checkSignature | Check signature (optional) |
Returns
Type | Description |
---|---|
Task<T> |
Type Parameters
Name | Description |
---|---|
T | Type of the object to deserialize to |