SocketAsyncEventArgs.DisconnectReuseSocket Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that specifies if socket can be reused after a disconnect operation.
public:
property bool DisconnectReuseSocket { bool get(); void set(bool value); };
public bool DisconnectReuseSocket { get; set; }
member this.DisconnectReuseSocket : bool with get, set
Public Property DisconnectReuseSocket As Boolean
Property Value
A Boolean that specifies if socket can be reused after a disconnect operation.
Remarks
This property is used to alter the behavior of Socket.DisconnectAsync method. If true, a socket disconnected by the Socket.DisconnectAsync method can be reused after disconnect completion in subsequent socket accept or connect operations.