CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
select_mode.h
1
2#pragma once
3
4namespace System {
5namespace Net {
6namespace Sockets {
7
9enum class SelectMode
10{
12 SelectRead = 0,
14 SelectWrite = 1,
16 SelectError = 2
17};
18} // namespace Sockets
19} // namespace Net
20} // namespace System
SelectMode
Specifies the mode for polling the status of the socket.
Definition: select_mode.h:10
@ SelectError
The 'error' status mode.
@ SelectRead
The 'read' status mode.
@ SelectWrite
The 'write' status mode.
Definition: db_command.h:9