Click or drag to resize
MimeKit

IMimeDecoderDecode(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#
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.
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

Decodes the specified input into the output buffer.

The output buffer should be large enough to hold all of the decoded input. For estimating the size needed for the output buffer, see EstimateOutputLength(Int32).

See Also