AsyncCompletedEventArgs Konstruktoren

Definition

Initialisiert eine neue Instanz der AsyncCompletedEventArgs-Klasse.

Überlädt

AsyncCompletedEventArgs()
Veraltet.

Initialisiert eine neue Instanz der AsyncCompletedEventArgs-Klasse.

AsyncCompletedEventArgs(Exception, Boolean, Object)

Initialisiert eine neue Instanz der AsyncCompletedEventArgs-Klasse.

AsyncCompletedEventArgs()

Achtung

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Initialisiert eine neue Instanz der AsyncCompletedEventArgs-Klasse.

public:
 AsyncCompletedEventArgs();
[System.Obsolete("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
public AsyncCompletedEventArgs ();
Public Sub New ()
Attribute

Gilt für:

AsyncCompletedEventArgs(Exception, Boolean, Object)

Quelle:
AsyncCompletedEvent.cs
Quelle:
AsyncCompletedEvent.cs
Quelle:
AsyncCompletedEvent.cs

Initialisiert eine neue Instanz der AsyncCompletedEventArgs-Klasse.

public:
 AsyncCompletedEventArgs(Exception ^ error, bool cancelled, System::Object ^ userState);
public AsyncCompletedEventArgs (Exception error, bool cancelled, object userState);
public AsyncCompletedEventArgs (Exception? error, bool cancelled, object? userState);
new System.ComponentModel.AsyncCompletedEventArgs : Exception * bool * obj -> System.ComponentModel.AsyncCompletedEventArgs
Public Sub New (error As Exception, cancelled As Boolean, userState As Object)

Parameter

error
Exception

Ein während des asynchronen Vorgangs aufgetretener Fehler.

cancelled
Boolean

Ein Wert, der angibt, ob der asynchrone Vorgang abgebrochen wurde.

userState
Object

Das an die RunWorkerAsync(Object)-Methode übergebene, optionale benutzerdefinierte Zustandsobjekt.

Gilt für: