SocketAsyncEventArgs.DisconnectReuseSocket Property

Definition

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.

Applies to

See also