Search Results for

    Show / Hide Table of Contents

    Class InjectOperationQuery

    Rpc query to access operations injection

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

    Methods

    | Improve this Doc View Source

    PostAsync(IEnumerable<Byte>, Boolean, Chain)

    Injects an operation into the node and returns the ID of the operation

    Declaration
    public Task<dynamic> PostAsync(IEnumerable<byte> data, bool async = false, Chain chain = Chain.Main)
    Parameters
    Type Name Description
    IEnumerable<System.Byte> data

    Signed operation bytes

    System.Boolean async

    Async (optional)

    Chain chain

    Chain (optional)

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

    PostAsync(Byte[], Boolean, Chain)

    Injects an operation into the node and returns the ID of the operation

    Declaration
    public Task<dynamic> PostAsync(byte[] data, bool async = false, Chain chain = Chain.Main)
    Parameters
    Type Name Description
    System.Byte[] data

    Signed operation bytes

    System.Boolean async

    Async (optional)

    Chain chain

    Chain (optional)

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

    PostAsync(String, Boolean, Chain)

    Injects an operation into the node and returns the ID of the operation

    Declaration
    public Task<dynamic> PostAsync(string data, bool async = false, Chain chain = Chain.Main)
    Parameters
    Type Name Description
    System.String data

    Signed operation hex bytes

    System.Boolean async

    Async (optional)

    Chain chain

    Chain (optional)

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

    PostAsync<T>(IEnumerable<Byte>, Boolean, Chain)

    Injects an operation into the node and returns the ID of the operation

    Declaration
    public Task<T> PostAsync<T>(IEnumerable<byte> data, bool async = false, Chain chain = Chain.Main)
    Parameters
    Type Name Description
    IEnumerable<System.Byte> data

    Signed operation bytes

    System.Boolean async

    Async (optional)

    Chain chain

    Chain (optional)

    Returns
    Type Description
    Task<T>
    Type Parameters
    Name Description
    T

    Type of the object to deserialize to

    | Improve this Doc View Source

    PostAsync<T>(Byte[], Boolean, Chain)

    Injects an operation into the node and returns the ID of the operation

    Declaration
    public Task<T> PostAsync<T>(byte[] data, bool async = false, Chain chain = Chain.Main)
    Parameters
    Type Name Description
    System.Byte[] data

    Signed operation bytes

    System.Boolean async

    Async (optional)

    Chain chain

    Chain (optional)

    Returns
    Type Description
    Task<T>
    Type Parameters
    Name Description
    T

    Type of the object to deserialize to

    | Improve this Doc View Source

    PostAsync<T>(String, Boolean, Chain)

    Injects an operation into the node and returns the ID of the operation

    Declaration
    public Task<T> PostAsync<T>(string data, bool async = false, Chain chain = Chain.Main)
    Parameters
    Type Name Description
    System.String data

    Signed operation hex bytes

    System.Boolean async

    Async (optional)

    Chain chain

    Chain (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