August 2003
Intermediate to advanced
928 pages
32h 1m
English
SocketShutdown
This enumeration provides values used
by Socket.Shutdown( ). Receive specifies that receiving will
be disabled on a socket. Send specifies that
sending will be disabled. Both disables sending
and receiving.
public enum SocketShutdown { Receive = 0, Send = 1, Both = 2 }
System.Object
→
System.ValueType
→
System.Enum(System.IComparable,
System.IFormattable, System.IConvertible)
→
SocketShutdown
Socket.Shutdown( )