コード例 #1
0
 public async Task <PostResult> SendCoin(SendCoinParameter parameter)
 {
     return(await Post <PostResult>(SendCoinApiPath, parameter));
 }
コード例 #2
0
 public async Task <PostResult> SendCoin(SendCoinParameter parameter, CancellationToken cancellationToken = default)
 {
     return(await Post <PostResult>(SendCoinApiPath, parameter, cancellationToken : cancellationToken).ConfigureAwait(false));
 }