MdxClient.MdxConnection.BeginDbTransaction C# (CSharp) 메소드

BeginDbTransaction() 보호된 메소드

protected BeginDbTransaction ( IsolationLevel isolationLevel ) : DbTransaction
isolationLevel IsolationLevel
리턴 System.Data.Common.DbTransaction
        protected override DbTransaction BeginDbTransaction(IsolationLevel isolationLevel)
        {
            if (IsolationLevel.Unspecified == isolationLevel || IsolationLevel.ReadCommitted == isolationLevel)
            {
                return new MdxTransaction(this);
            }
            throw new NotSupportedException();
        }