コード例 #1
0
        public Task <string> DelegatesQueryAsync(string account, BlockParameter blockParameter = null)
        {
            var delegatesFunction = new DelegatesFunction();

            delegatesFunction.Account = account;

            return(ContractHandler.QueryAsync <DelegatesFunction, string>(delegatesFunction, blockParameter));
        }
コード例 #2
0
 public Task <string> DelegatesQueryAsync(DelegatesFunction delegatesFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <DelegatesFunction, string>(delegatesFunction, blockParameter));
 }