StreamMode

Description

Describes, how to interpret file stream.

Values of this enumeration:

  • Binary - File is being treated as stream of bytes.
  • Text - File is being treated as set of letters.

namespace StreamMode
{
	enum Type
	{
		Binary,
		Text
	};
}