Class BigMapQuery
Rpc query to access big_map storage
Inherited Members
Namespace: Netezos.Rpc.Queries.Post
Assembly: Netezos.dll
Syntax
public class BigMapQuery : RpcMethod
Methods
| Improve this Doc View SourcePostAsync(Object, Object)
Gets the value associated with a key in the big_map storage of the contract
Declaration
public Task<dynamic> PostAsync(object key, object type)
Parameters
Type | Name | Description |
---|---|---|
System.Object | key | Key (micheline michelson expression) |
System.Object | type | Type of the key (micheline michelson expression) |
Returns
Type | Description |
---|---|
Task<System.Object> |
PostAsync(Object, String, String)
Gets the value associated with a key in the big_map storage of the contract
Declaration
public Task<dynamic> PostAsync(object key, string type, string prim)
Parameters
Type | Name | Description |
---|---|---|
System.Object | key | Key (micheline michelson expression) |
System.String | type | Type of the key (micheline michelson expression) |
System.String | prim | Primitive michelson type |
Returns
Type | Description |
---|---|
Task<System.Object> |
PostAsync<T>(Object, Object)
Gets the value associated with a key in the big_map storage of the contract
Declaration
public Task<T> PostAsync<T>(object key, object type)
Parameters
Type | Name | Description |
---|---|---|
System.Object | key | Key (micheline michelson expression) |
System.Object | type | Type of the key (micheline michelson expression) |
Returns
Type | Description |
---|---|
Task<T> |
Type Parameters
Name | Description |
---|---|
T | Type of the object to deserialize to |
PostAsync<T>(Object, String, String)
Gets the value associated with a key in the big_map storage of the contract
Declaration
public Task<T> PostAsync<T>(object key, string type, string prim)
Parameters
Type | Name | Description |
---|---|---|
System.Object | key | Key (micheline michelson expression) |
System.String | type | Type of the key (micheline michelson expression) |
System.String | prim | Primitive michelson type |
Returns
Type | Description |
---|---|
Task<T> |
Type Parameters
Name | Description |
---|---|
T | Type of the object to deserialize to |