示例#1
0
 public BigInteger ReadInt128()
 {
     return(TypeDecoder.DecodeInt128(ReadOpaque(16)));
 }
示例#2
0
 public async ValueTask <BigInteger> ReadInt128Async(CancellationToken cancellationToken = default)
 {
     return(TypeDecoder.DecodeInt128(await ReadOpaqueAsync(16, cancellationToken).ConfigureAwait(false)));
 }
 public async Task <BigInteger> ReadInt128(AsyncWrappingCommonArgs async)
 {
     return(TypeDecoder.DecodeInt128(await ReadOpaque(16, async).ConfigureAwait(false)));
 }