Esempio n. 1
0
        public Task <bool> BoundAddressesQueryAsync(string returnValue1, BlockParameter blockParameter = null)
        {
            var boundAddressesFunction = new BoundAddressesFunction();

            boundAddressesFunction.ReturnValue1 = returnValue1;

            return(ContractHandler.QueryAsync <BoundAddressesFunction, bool>(boundAddressesFunction, blockParameter));
        }
Esempio n. 2
0
 public Task <bool> BoundAddressesQueryAsync(BoundAddressesFunction boundAddressesFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <BoundAddressesFunction, bool>(boundAddressesFunction, blockParameter));
 }