ContextUtil.DisableCommit Metod

Definition

Anger både biten consistent och biten done till false i COM+-kontexten.

public:
 static void DisableCommit();
public static void DisableCommit();
static member DisableCommit : unit -> unit
Public Shared Sub DisableCommit ()

Undantag

Ingen COM+-kontext är tillgänglig.

Exempel

I följande kodexempel anropas DisableCommit metoden.

[Transaction(TransactionOption::Required)]
public ref class ContextUtil_DisableCommit: public ServicedComponent
{
public:
   void Example()
   {
      // Set both the consistent bit and the done bit to false for the
      // current COM+ context.
      ContextUtil::DisableCommit();
   }
};
[Transaction(TransactionOption.Required)]
public class ContextUtil_DisableCommit : ServicedComponent
{
    public void Example()
    {
        // Set both the consistent bit and the done bit to false for the
        // current COM+ context.
        ContextUtil.DisableCommit();
    }
}
<Transaction(TransactionOption.Required)>  _
Public Class ContextUtil_DisableCommit
    Inherits ServicedComponent
    
    Public Sub Example() 
        ' Set both the consistent bit and the done bit to false for the
        ' current COM+ context.
        ContextUtil.DisableCommit()
    
    End Sub
End Class

Kommentarer

Om du tillfrågas röstar COM+-kontexten för att avbryta den aktuella transaktionen, men objektet inaktiveras inte vid metodretur.

Gäller för