SocketAsyncOperation Enumerazione
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.
Tipo di operazione socket asincrona eseguita più di recente con questo oggetto contesto.
public enum class SocketAsyncOperation
public enum SocketAsyncOperation
type SocketAsyncOperation =
Public Enum SocketAsyncOperation
- Ereditarietà
Campi
Accept | 1 | Operazione socket Accept. |
Connect | 2 | Operazione socket Connect. |
Disconnect | 3 | Operazione socket Disconnect. |
None | 0 | Nessuna delle operazioni socket. |
Receive | 4 | Operazione socket Receive. |
ReceiveFrom | 5 | Operazione socket ReceiveFrom. |
ReceiveMessageFrom | 6 | Operazione socket ReceiveMessageFrom. |
Send | 7 | Operazione socket Send. |
SendPackets | 8 | Operazione socket SendPackets. |
SendTo | 9 | Operazione socket SendTo. |
Commenti
Questo tipo descrive l'operazione socket asincrona completata più di recente usando un System.Net.Sockets.SocketAsyncEventArgs oggetto . Il valore della SocketAsyncEventArgs.LastOperation proprietà è impostato su Nessuno finché non viene usata l'istanza System.Net.Sockets.SocketAsyncEventArgs per avviare un'operazione socket asincrona. La proprietà verrà quindi impostata sul tipo di operazione asincrona eseguita. Questo tipo facilita più facilmente l'uso di un singolo delegato di callback di completamento per più tipi di operazioni socket asincrone. Questo tipo è destinato all'uso nella routine di completamento SocketAsyncCallback.
Il SocketAsyncOperation tipo viene utilizzato dalla SocketAsyncEventArgs.LastOperation proprietà .
Si applica a
Vedi anche
- AcceptAsync(SocketAsyncEventArgs)
- ConnectAsync(SocketAsyncEventArgs)
- DisconnectAsync(SocketAsyncEventArgs)
- ReceiveAsync(SocketAsyncEventArgs)
- ReceiveFromAsync(SocketAsyncEventArgs)
- ReceiveMessageFromAsync(SocketAsyncEventArgs)
- SendAsync(SocketAsyncEventArgs)
- SendPacketsAsync(SocketAsyncEventArgs)
- SendToAsync(SocketAsyncEventArgs)
- SocketAsyncEventArgs
- LastOperation