Click or drag to resize
MimeKit

PassThroughDecoderDecode(Byte, Int32, Int32, Byte) Method

Decode the specified input into the output buffer.

Namespace: MimeKit.Encodings
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public int Decode(
	byte[] input,
	int startIndex,
	int length,
	byte[] output
)

Parameters

input  Byte
The input buffer.
startIndex  Int32
The starting index of the input buffer.
length  Int32
The length of the input buffer.
output  Byte
The output buffer.

Return Value

Int32
The number of bytes written to the output buffer.

Implements

IMimeDecoderDecode(Byte, Int32, Int32, Byte)
Exceptions
ExceptionCondition
ArgumentNullException

input is null.

-or-

output is null.

ArgumentOutOfRangeExceptionstartIndex and length do not specify a valid range in the input byte array.
ArgumentException

output is not large enough to contain the encoded content.

Use the EstimateOutputLength(Int32) method to properly determine the necessary length of the output byte array.

Remarks
Copies the input buffer into the output buffer, verbatim.
See Also