Socket.UseOnlyOverlappedIO Proprietà

Definizione

Attenzione

UseOnlyOverlappedIO has been deprecated and is not supported.

Ottiene o imposta un valore che specifica se il socket deve usare solo la modalità I/O sovrapposta. In .NET 5+ (incluse le versioni di .NET Core), il valore è sempre false.

public:
 property bool UseOnlyOverlappedIO { bool get(); void set(bool value); };
public bool UseOnlyOverlappedIO { get; set; }
[System.Obsolete("UseOnlyOverlappedIO has been deprecated and is not supported.")]
public bool UseOnlyOverlappedIO { get; set; }
member this.UseOnlyOverlappedIO : bool with get, set
[<System.Obsolete("UseOnlyOverlappedIO has been deprecated and is not supported.")>]
member this.UseOnlyOverlappedIO : bool with get, set
Public Property UseOnlyOverlappedIO As Boolean

Valore della proprietà

true in .NET Framework se usa Socket solo I/O sovrapposti; in caso contrario, false. Il valore predefinito è false.

Attributi

Eccezioni

Il socket è stato associato a una porta di completamento.

Commenti

Solo .NET Framework: impostare questa proprietà su true per una Socket chiamata DuplicateAndClose . In caso contrario, framework può assegnare una porta di completamento al socket, che impedirebbe l'uso di DuplicateAndClose.

Nelle versioni .NET 5+ (includono .NET Core), il valore di questa proprietà è sempre false, e non è possibile modificarlo.

Si applica a