AsyncCompletedEventArgs コンストラクター

定義

AsyncCompletedEventArgs クラスの新しいインスタンスを初期化します。

オーバーロード

AsyncCompletedEventArgs()
古い.

AsyncCompletedEventArgs クラスの新しいインスタンスを初期化します。

AsyncCompletedEventArgs(Exception, Boolean, Object)

AsyncCompletedEventArgs クラスの新しいインスタンスを初期化します。

AsyncCompletedEventArgs()

注意事項

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

AsyncCompletedEventArgs クラスの新しいインスタンスを初期化します。

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 ()
属性

適用対象

AsyncCompletedEventArgs(Exception, Boolean, Object)

ソース:
AsyncCompletedEvent.cs
ソース:
AsyncCompletedEvent.cs
ソース:
AsyncCompletedEvent.cs

AsyncCompletedEventArgs クラスの新しいインスタンスを初期化します。

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)

パラメーター

error
Exception

非同期操作中に発生したエラー。

cancelled
Boolean

非同期操作がキャンセルされたかどうかを示す値。

userState
Object

RunWorkerAsync(Object) メソッドに渡される、オプションのユーザー指定の状態オブジェクト。

適用対象