Aspectacular.MethodCallLoggingExtensions.LogErrorWithKey C# (CSharp) Метод

LogErrorWithKey() публичный статический Метод

Adds error log entry to AOP Proxy log in a way that makes it possible for aspect classes to access it for storing, sorting, grouping, etc.
public static LogErrorWithKey ( this methodLogger, string category, string format ) : void
methodLogger this
category string
format string
Результат void
        public static void LogErrorWithKey(this IMethodLogProvider methodLogger, string category, string format, params object[] args)
        {
            Log(methodLogger, EntryType.Error, category, format, args);
        }