Hunny Software Library Reference

QuotedPrintableDecoderW.Finish Method 

Finishes a multiple-buffer decode operation.

[Visual Basic]
Public Sub Finish( _
   ByVal outBuf As ByteBuffer _
)
[C#]
public void Finish(
   ByteBuffer outBuf
);

Parameters

outBuf
The output buffer.

Remarks

When you use the low-level interface, the decoder buffers some data internally. Therefore, after you have passed all input data to the decoder, you must call this method to flush the internal buffer.

The following condition must be satisfied when you call the method:

The above condition must also be satisified after the method returns in order to guarantee that all output data has been written to the output buffer. You may need to call Finish() more than once before the above condition is satisfied when the method returns.

For more information on using the low-level interface, see the overview section for QuotedPrintableDecoder.

See Also

QuotedPrintableDecoderW Class | Hunny.Mime Namespace