SocketAsyncEventArgs.SocketFlags Property
Definition
Gets the results of an asynchronous socket operation or sets the behavior of an asynchronous operation.
public:
property System::Net::Sockets::SocketFlags SocketFlags { System::Net::Sockets::SocketFlags get(); void set(System::Net::Sockets::SocketFlags value); };
public System.Net.Sockets.SocketFlags SocketFlags { get; set; }
member this.SocketFlags : System.Net.Sockets.SocketFlags with get, set
Public Property SocketFlags As SocketFlags
Property Value
A SocketFlags that represents the results of an asynchronous socket operation.
Remarks
The property specifies the bitwise combination of the System.Net.Sockets.SocketFlags to be used for an asynchronous socket operation.
This property is used with the Socket.ReceiveAsync, Socket.ReceiveFromAsync, Socket.SendAsync, and Socket.SendToAsync methods.