SenseNet.Diagnostics.OperationTrace.GetCallerMethodName C# (CSharp) Method

GetCallerMethodName() private method

private GetCallerMethodName ( ) : string
return string
        private string GetCallerMethodName()
        {
            var method = Utility.GetOriginalCaller(this);
            if (method == null) return "Unknown";
            return method.ToString();
        }