Share via


SinglePhaseEnlistment.Aborted 方法

定義

表示回呼,用來向交易管理員指出應該復原交易。

多載

Aborted()

表示回呼,用來向交易管理員指出應該復原交易。

Aborted(Exception)

表示回呼,用來向交易管理員指出應該復原交易,並提供說明。

備註

交易參與者會使用這個方法來通知交易管理員應該回復交易。

Aborted()

來源:
SinglePhaseEnlistment.cs
來源:
SinglePhaseEnlistment.cs
來源:
SinglePhaseEnlistment.cs

表示回呼,用來向交易管理員指出應該復原交易。

public:
 void Aborted();
public void Aborted ();
member this.Aborted : unit -> unit
Public Sub Aborted ()

備註

實作 介面的交易 ISinglePhaseNotification 參與者會使用這個方法來通知交易管理員無法認可,而且應該回復交易。

適用於

Aborted(Exception)

來源:
SinglePhaseEnlistment.cs
來源:
SinglePhaseEnlistment.cs
來源:
SinglePhaseEnlistment.cs

表示回呼,用來向交易管理員指出應該復原交易,並提供說明。

public:
 void Aborted(Exception ^ e);
public void Aborted (Exception? e);
public void Aborted (Exception e);
member this.Aborted : Exception -> unit
Public Sub Aborted (e As Exception)

參數

e
Exception

說明初始化復原的原因。

適用於