System.Transactions.TransactionsEtwProvider.MethodExit C# (CSharp) Method

MethodExit() private method

private MethodExit ( TraceSourceType traceSource, [ methodname = null ) : void
traceSource TraceSourceType
methodname [
return void
        internal void MethodExit(TraceSourceType traceSource, [CallerMemberName] string methodname = null)
        {
            if (IsEnabled(EventLevel.Verbose, ALL_KEYWORDS))
            {
                if (traceSource == TraceSourceType.TraceSourceLtm)
                {
                    MethodExitTraceLtm(string.Empty, methodname);
                }
                else if (traceSource == TraceSourceType.TraceSourceBase)
                {
                    MethodExitTraceBase(string.Empty, methodname);
                }
                else if (traceSource == TraceSourceType.TraceSourceDistributed)
                {
                    MethodExitTraceDistributed(string.Empty, methodname);
                }
            }
        }

Same methods

TransactionsEtwProvider::MethodExit ( TraceSourceType traceSource, object thisOrContextObject, [ methodname = null ) : void