Class RpcObject
Rpc query to GET a json object
Inheritance
System.Object
RpcObject
Inherited Members
Namespace: Netezos.Rpc
Assembly: Netezos.dll
Syntax
public class RpcObject : RpcQuery
Methods
| Improve this Doc View SourceGetAsync()
Executes the query and returns the dynamic json object
Declaration
public Task<dynamic> GetAsync()
Returns
Type | Description |
---|---|
Task<System.Object> |
GetAsync<T>()
Executes the query and returns the json object, deserialized to the specified type
Declaration
public Task<T> GetAsync<T>()
Returns
Type | Description |
---|---|
Task<T> |
Type Parameters
Name | Description |
---|---|
T | Type of the object to deserialize to |