コード例 #1
0
        public Task <byte[]> BanReasonQueryAsync(string returnValue1, BlockParameter blockParameter = null)
        {
            var banReasonFunction = new BanReasonFunction();

            banReasonFunction.ReturnValue1 = returnValue1;

            return(ContractHandler.QueryAsync <BanReasonFunction, byte[]>(banReasonFunction, blockParameter));
        }
コード例 #2
0
 public Task <byte[]> BanReasonQueryAsync(BanReasonFunction banReasonFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <BanReasonFunction, byte[]>(banReasonFunction, blockParameter));
 }