SystemIOStreamWrappingMode

SystemIOStreamWrappingMode enum

Specifies the mode of I/O operations that wrappers will perform on System::IO::Stream-like streams.

enum class SystemIOStreamWrappingMode

Values

NameValueDescription
Binary0A mode that allows input operations to encode stream bytes into char_type data and decode char_type data into stream bytes for output operations.
Conversion1A mode that allows input operations to convert stream bytes from uint8_t type to char_type type and vice versa for output operations.

See Also