CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
socket_shutdown.h
1
2#pragma once
3
4namespace System {
5namespace Net {
6namespace Sockets {
7
9enum class SocketShutdown
10{
12 Receive = 0x00,
14 Send = 0x01,
16 Both = 0x02
17};
18} // namespace Sockets
19} // namespace Net
20} // namespace System
SocketShutdown
Defines constants used by the Socket.Shutdown method.
Definition: socket_shutdown.h:10
@ Both
Disables the socket for both sending and receiving.
@ Receive
Disables the socket for receiving.
@ Send
Disables the socket for sending.
Definition: db_command.h:9