Search Results for

    Show / Hide Table of Contents

    Class BigMapQuery

    Rpc query to access big_map storage

    Inheritance
    System.Object
    RpcQuery
    RpcMethod
    BigMapQuery
    Inherited Members
    RpcMethod.PostAsync(String)
    RpcMethod.PostAsync(Object)
    RpcMethod.PostAsync<T>(String)
    RpcMethod.PostAsync<T>(Object)
    RpcQuery.ToString()
    Namespace: Netezos.Rpc.Queries.Post
    Assembly: Netezos.dll
    Syntax
    public class BigMapQuery : RpcMethod

    Methods

    | Improve this Doc View Source

    PostAsync(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>
    | Improve this Doc View Source

    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>
    | Improve this Doc View Source

    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

    | Improve this Doc View Source

    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

    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright © Baking Bad