다음을 통해 공유


ContextUtil.EnableCommit 메서드

정의

COM+ 컨텍스트에서 consistent 비트를 true로 설정하고 done 비트를 false로 설정합니다.

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

예외

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

예제

다음 코드 예제에서 호출 된 EnableCommit 메서드.

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

설명

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

적용 대상