コード例 #1
0
        public Task <string> LandOwnersQueryAsync(ushort returnValue1, ushort returnValue2, byte returnValue3, BlockParameter blockParameter = null)
        {
            var landOwnersFunction = new LandOwnersFunction();

            landOwnersFunction.ReturnValue1 = returnValue1;
            landOwnersFunction.ReturnValue2 = returnValue2;
            landOwnersFunction.ReturnValue3 = returnValue3;

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