다음을 통해 공유


ContextUtil.DisableCommit 메서드

정의

COM+ 컨텍스트에서 consistent 비트와 done 비트를 모두 false로 설정합니다.

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

예외

사용 가능한 COM+ 컨텍스트가 없는 경우

예제

다음 코드 예제에서 호출 된 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

설명

묻는 메시지가 표시되면 COM+ 컨텍스트는 현재 트랜잭션을 중단하도록 투표하지만 메서드 반환에서는 개체가 비활성화되지 않습니다.

적용 대상