System.Transactions.TransactionInterop.GetWhereabouts C# (CSharp) 메소드

GetWhereabouts() 공개 정적인 메소드

public static GetWhereabouts ( ) : byte[]
리턴 byte[]
        public static byte[] GetWhereabouts()
        {
            TransactionsEtwProvider etwLog = TransactionsEtwProvider.Log;
            if (etwLog.IsEnabled())
            {
                etwLog.MethodEnter(TraceSourceType.TraceSourceDistributed, "TransactionInterop.GetWhereabouts");
            }

            DistributedTransactionManager dTm = TransactionManager.DistributedTransactionManager;
            byte[] returnValue = dTm.GetWhereabouts();

            if (etwLog.IsEnabled())
            {
                etwLog.MethodExit(TraceSourceType.TraceSourceDistributed, "TransactionInterop.GetWhereabouts");
            }
            return returnValue;
        }