Search Results for

    Show / Hide Table of Contents

    Class TypeCheckCodeQuery

    Rpc query to access type checking

    Inheritance
    System.Object
    RpcQuery
    RpcMethod
    TypeCheckCodeQuery
    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 TypeCheckCodeQuery : RpcMethod

    Methods

    | Improve this Doc View Source

    PostAsync(Object, Nullable<Int64>)

    Typecheck a piece of code in the current context and returns the type map

    Declaration
    public Task<dynamic> PostAsync(object program, long? gas = null)
    Parameters
    Type Name Description
    System.Object program

    Program michelson expression

    System.Nullable<System.Int64> gas

    Gas limit (optional)

    Returns
    Type Description
    Task<System.Object>
    | Improve this Doc View Source

    PostAsync<T>(Object, Nullable<Int64>)

    Typecheck a piece of code in the current context and returns the type map

    Declaration
    public Task<T> PostAsync<T>(object program, long? gas = null)
    Parameters
    Type Name Description
    System.Object program

    Program michelson expression

    System.Nullable<System.Int64> gas

    Gas limit (optional)

    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