共用方式為


ErrorEventArgs 建構函式

定義

初始化 ErrorEventArgs 類別的新執行個體。

多載

ErrorEventArgs(Exception)

使用指定的例外狀況,初始化 ErrorEventArgs 類別的新執行個體。

ErrorEventArgs(Boolean, Exception)

使用指定的取消和例外狀況,初始化 ErrorEventArgs 類別的新執行個體。

ErrorEventArgs(Exception)

使用指定的例外狀況,初始化 ErrorEventArgs 類別的新執行個體。

public:
 ErrorEventArgs(Exception ^ exception);
public ErrorEventArgs (Exception exception);
new System.IdentityModel.Services.ErrorEventArgs : Exception -> System.IdentityModel.Services.ErrorEventArgs
Public Sub New (exception As Exception)

參數

exception
Exception

發生的例外狀況。 設定 Exception 屬性。

例外狀況

exceptionnull

備註

CancelErrorEventArgs實例的 屬性會初始化為 false;事件不會取消。

適用於

ErrorEventArgs(Boolean, Exception)

使用指定的取消和例外狀況,初始化 ErrorEventArgs 類別的新執行個體。

public:
 ErrorEventArgs(bool cancel, Exception ^ exception);
public ErrorEventArgs (bool cancel, Exception exception);
new System.IdentityModel.Services.ErrorEventArgs : bool * Exception -> System.IdentityModel.Services.ErrorEventArgs
Public Sub New (cancel As Boolean, exception As Exception)

參數

cancel
Boolean

初始取消狀態。 設定 Cancel 屬性。

exception
Exception

發生的例外狀況。 設定 Exception 屬性。

例外狀況

exceptionnull

適用於