Udostępnij za pośrednictwem


ContextUtil.DisableCommit Metoda

Definicja

Ustawia bit consistent i done bit na false wartość w kontekście COM+.

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

Wyjątki

Brak kontekstu COM+ jest dostępny.

Przykłady

Poniższy przykład kodu wywołuje metodę DisableCommit .

[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

Uwagi

Jeśli zostanie wyświetlony monit, kontekst COM+ głosuje, aby przerwać bieżącą transakcję, ale obiekt nie jest dezaktywowany po powrocie metody.

Dotyczy