다음을 통해 공유


TransactionScope 생성자

정의

TransactionScope 클래스의 새 인스턴스를 초기화합니다.

public:
 TransactionScope();
public TransactionScope ();
Public Sub New ()

예제

다음 코드 샘플에서는 TransactionScope 활동을 만드는 방법을 보여 줍니다.

new TransactionScope
{
    Body = new Sequence
    {
        Activities =
        {
            new WriteLine { Text = "    Begin TransactionScope" },

            new PrintTransactionId(),

            new TransactionScopeTest(),

            new WriteLine { Text = "    End TransactionScope" },
        },
    },
},

적용 대상