コード例 #1
0
        public Task <BigInteger> GetAssembledTimeStampQueryAsync(BigInteger gUID, BlockParameter blockParameter = null)
        {
            var getAssembledTimeStampFunction = new GetAssembledTimeStampFunction();

            getAssembledTimeStampFunction.GUID = gUID;

            return(ContractHandler.QueryAsync <GetAssembledTimeStampFunction, BigInteger>(getAssembledTimeStampFunction, blockParameter));
        }
コード例 #2
0
 public Task <BigInteger> GetAssembledTimeStampQueryAsync(GetAssembledTimeStampFunction getAssembledTimeStampFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetAssembledTimeStampFunction, BigInteger>(getAssembledTimeStampFunction, blockParameter));
 }