MdxClient.MdxConnection.BeginDbTransaction C# (CSharp) Method

BeginDbTransaction() protected method

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