mscorlib(4.0.0.0) API with additions
SocketFlags.cs
1 namespace System.Net.Sockets
2 {
4  [Flags]
5  public enum SocketFlags
6  {
8  None = 0x0,
10  OutOfBand = 0x1,
12  Peek = 0x2,
14  DontRoute = 0x4,
16  MaxIOVectorLength = 0x10,
18  Truncated = 0x100,
20  ControlDataTruncated = 0x200,
22  Broadcast = 0x400,
24  Multicast = 0x800,
26  Partial = 0x8000
27  }
28 }
Indicates a multicast packet.
Partial send or receive for message.
Indicates that the control data did not fit into an internal 64-KB buffer and was truncated.
Peek at the incoming message.
Send without using routing tables.
SocketFlags
Specifies socket send and receive behaviors.
Definition: SocketFlags.cs:5
Provides a standard value for the number of WSABUF structures that are used to send and receive data....
The message was too large to fit into the specified buffer and was truncated.