Click or drag to resize
MimeKit

SecureMimeContextDecompressTo Method

Decompress the specified stream to an output stream.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.10.0
Syntax
C#
public virtual void DecompressTo(
	Stream stream,
	Stream output,
	CancellationToken cancellationToken = default
)

Parameters

stream  Stream
The stream to decompress.
output  Stream
The output stream.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Implements

ISecureMimeContextDecompressTo(Stream, Stream, CancellationToken)
Exceptions
ExceptionCondition
ArgumentNullException

stream is .

-or-

output is .

OperationCanceledException The operation was canceled via the cancellation token.
CmsException An error occurred in the cryptographic message syntax subsystem.
Remarks
Decompresses the specified stream to an output stream.
See Also