DelimiterHandling

Description

Delimiting sequence handling mode.

Values of this enumeration:

  • Include - Delimiter will be included in read sequence.
  • Discard - Delimiter will be discarded both from read sequence and buffer.
  • LeaveInBuffer - Delimiter will stay in buffer.

namespace DelimiterHandling
{
	enum Type
	{
		Include,
		Discard,
		LeaveInBuffer
	};
}