@@ -30,7 +30,7 @@ public Image Decode(DecoderOptions options, Stream stream)
3030 s => this . Decode ( options , s , default ) ) ;
3131
3232 /// <inheritdoc/>
33- public Task < Image < TPixel > > DecodeAsync < TPixel > ( DecoderOptions options , Stream stream , CancellationToken cancellationToken )
33+ public Task < Image < TPixel > > DecodeAsync < TPixel > ( DecoderOptions options , Stream stream , CancellationToken cancellationToken = default )
3434 where TPixel : unmanaged, IPixel < TPixel >
3535 => WithSeekableStreamAsync (
3636 options ,
@@ -39,7 +39,7 @@ public Task<Image<TPixel>> DecodeAsync<TPixel>(DecoderOptions options, Stream st
3939 cancellationToken ) ;
4040
4141 /// <inheritdoc/>
42- public Task < Image > DecodeAsync ( DecoderOptions options , Stream stream , CancellationToken cancellationToken )
42+ public Task < Image > DecodeAsync ( DecoderOptions options , Stream stream , CancellationToken cancellationToken = default )
4343 => WithSeekableStreamAsync (
4444 options ,
4545 stream ,
@@ -54,7 +54,7 @@ public IImageInfo Identify(DecoderOptions options, Stream stream)
5454 s => this . Identify ( options , s , default ) ) ;
5555
5656 /// <inheritdoc/>
57- public Task < IImageInfo > IdentifyAsync ( DecoderOptions options , Stream stream , CancellationToken cancellationToken )
57+ public Task < IImageInfo > IdentifyAsync ( DecoderOptions options , Stream stream , CancellationToken cancellationToken = default )
5858 => WithSeekableStreamAsync (
5959 options ,
6060 stream ,
0 commit comments