public Task<string> OwnerOfQueryAsync(BigInteger tokenId, BlockParameter blockParameter = null)
 {
     var ownerOfFunction = new OwnerOfFunction();
         ownerOfFunction.TokenId = tokenId;
     
     return ContractHandler.QueryAsync<OwnerOfFunction, string>(ownerOfFunction, blockParameter);
 }
示例#2
0
        public Task <string> OwnerOfQueryAsync(BigInteger TokenId, BlockParameter BlockParameter = null)
        {
            var OwnerOfFunction = new OwnerOfFunction {
                TokenId = TokenId
            };

            return(ContractHandler.QueryAsync <OwnerOfFunction, string>(OwnerOfFunction, BlockParameter));
        }
 public Task <string> OwnerOfQueryAsync(OwnerOfFunction ownerOfFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <OwnerOfFunction, string>(ownerOfFunction, blockParameter));
 }