| PassThroughDecoderDecode(Byte*, Int32, Byte*) Method |
Decode the specified input into the output buffer.
Namespace: MimeKit.EncodingsAssembly: MimeKit (in MimeKit.dll) Version: 4.7.1
Syntax public int Decode(
byte* input,
int length,
byte* output
)
Parameters
- input Byte*
- A pointer to the beginning of the input buffer.
- length Int32
- The length of the input buffer.
- output Byte*
- A pointer to the beginning of the output buffer.
Return Value
Int32The number of bytes written to the output buffer.
Implements
IMimeDecoderDecode(Byte*, Int32, Byte*)Remarks
Copies the input buffer into the output buffer, verbatim.
See Also