C# 클래스 Aspectacular.MethodCallLoggingExtensions

Holds logging methods accessible to intercepted methods if their parent class implements ICallLogger interface.
파일 보기 프로젝트 열기: vgribok/Aspectacular

공개 메소드들

메소드 설명
Log ( this methodLogger, EntryType entryType, string category, string format ) : void

Adds log entry to AOP Proxy log in a way that makes it possible for aspect classes to access it for storing, sorting, grouping, etc.

LogError ( this methodLogger, string format ) : void

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.

LogErrorWithKey ( this methodLogger, string category, string format ) : void

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.

LogInformation ( this methodLogger, string format ) : void

Adds information log entry to AOP Proxy log in a way that makes it possible for aspect classes to access it for storing, sorting, grouping, etc.

LogInformationData ( this methodLogger, string key, object val ) : void

Logs a piece of data as a log entry with key.

LogInformationWithKey ( this methodLogger, string category, string format ) : void

Adds information log entry to AOP Proxy log in a way that makes it possible for aspect classes to access it for storing, sorting, grouping, etc.

LogWarning ( this methodLogger, string format ) : void

Adds warning log entry to AOP Proxy log in a way that makes it possible for aspect classes to access it for storing, sorting, grouping, etc.

LogWarningWithKey ( this methodLogger, string category, string format ) : void

Adds warning log entry to AOP Proxy log in a way that makes it possible for aspect classes to access it for storing, sorting, grouping, etc.

비공개 메소드들

메소드 설명
FallbackTraceLog ( EntryType entryType, string format ) : void

메소드 상세

Log() 공개 정적인 메소드

Adds 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 Log ( this methodLogger, EntryType entryType, string category, string format ) : void
methodLogger this
entryType EntryType
category string
format string
리턴 void

LogError() 공개 정적인 메소드

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 LogError ( this methodLogger, string format ) : void
methodLogger this
format string
리턴 void

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

LogInformation() 공개 정적인 메소드

Adds information 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 LogInformation ( this methodLogger, string format ) : void
methodLogger this
format string
리턴 void

LogInformationData() 공개 정적인 메소드

Logs a piece of data as a log entry with key.
public static LogInformationData ( this methodLogger, string key, object val ) : void
methodLogger this
key string
val object
리턴 void

LogInformationWithKey() 공개 정적인 메소드

Adds information 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 LogInformationWithKey ( this methodLogger, string category, string format ) : void
methodLogger this
category string
format string
리턴 void

LogWarning() 공개 정적인 메소드

Adds warning 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 LogWarning ( this methodLogger, string format ) : void
methodLogger this
format string
리턴 void

LogWarningWithKey() 공개 정적인 메소드

Adds warning 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 LogWarningWithKey ( this methodLogger, string category, string format ) : void
methodLogger this
category string
format string
리턴 void