コード例 #1
0
        public Task <OrdersOutputDTO> OrdersQueryAsync(uint returnValue1, BlockParameter blockParameter = null)
        {
            var ordersFunction = new OrdersFunction();

            ordersFunction.ReturnValue1 = returnValue1;

            return(ContractHandler.QueryDeserializingToObjectAsync <OrdersFunction, OrdersOutputDTO>(ordersFunction, blockParameter));
        }
コード例 #2
0
 public Task <OrdersOutputDTO> OrdersQueryAsync(OrdersFunction ordersFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryDeserializingToObjectAsync <OrdersFunction, OrdersOutputDTO>(ordersFunction, blockParameter));
 }