C# 클래스 SipSharp.Logging.LogFilter

Default log filter implementation.
상속: ILogFilter
파일 보기 프로젝트 열기: jgauffin/SipSharp 1 사용 예제들

공개 메소드들

메소드 설명
AddNamespace ( string ns, LogLevel level ) : void

Add a namespace filter.

AddStandardRules ( ) : void

Parser can only display errors. Transports only warnings.

AddType ( Type type, LogLevel level ) : void

Add filter for a type

AddType ( string typeStr, LogLevel level ) : void

Add filter for a type

비공개 메소드들

메소드 설명
ILogFilter ( LogLevel level, Type type ) : bool

Checks if the specified type can send log entries at the specified level.

메소드 상세

AddNamespace() 공개 메소드

Add a namespace filter.
public AddNamespace ( string ns, LogLevel level ) : void
ns string Namespace to add filter for.
level LogLevel Minimum loglevel required.
리턴 void

AddStandardRules() 공개 메소드

Parser can only display errors. Transports only warnings.
public AddStandardRules ( ) : void
리턴 void

AddType() 공개 메소드

Add filter for a type
public AddType ( Type type, LogLevel level ) : void
type System.Type Type to add filter for.
level LogLevel Minimum loglevel required.
리턴 void

AddType() 공개 메소드

Add filter for a type
public AddType ( string typeStr, LogLevel level ) : void
typeStr string Type to add filter for.
level LogLevel Minimum loglevel required.
리턴 void