SocketAsyncEventArgs.SocketError Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta i risultati dell'operazione socket asincrona.
public:
property System::Net::Sockets::SocketError SocketError { System::Net::Sockets::SocketError get(); void set(System::Net::Sockets::SocketError value); };
public System.Net.Sockets.SocketError SocketError { get; set; }
member this.SocketError : System.Net.Sockets.SocketError with get, set
Public Property SocketError As SocketError
Valore della proprietà
Oggetto SocketError che rappresenta il risultato dell'operazione socket asincrona.
Commenti
Questa proprietà fornisce lo stato di completamento di un'operazione socket asincrona. Il valore SocketError.Success indica il completamento corretto di un'operazione. Questa proprietà viene usata principalmente nella routine del gestore eventi di un'applicazione.
Questa proprietà viene utilizzata con tutti i metodi del socket asincrono (xxxAsync).
Si applica a
Vedi anche
- AcceptAsync(SocketAsyncEventArgs)
- ConnectAsync(SocketAsyncEventArgs)
- DisconnectAsync(SocketAsyncEventArgs)
- ReceiveAsync(SocketAsyncEventArgs)
- ReceiveFromAsync(SocketAsyncEventArgs)
- ReceiveMessageFromAsync(SocketAsyncEventArgs)
- SendAsync(SocketAsyncEventArgs)
- SendPacketsAsync(SocketAsyncEventArgs)
- SendToAsync(SocketAsyncEventArgs)
- SocketError