C# 클래스 ObjectPrinter.TypeInspectors.Funcs

Boiler plate functions that can be used to customize TypeInspectors
파일 보기 프로젝트 열기: drewburlingame/ObjectPrinter 1 사용 예제들

공개 메소드들

메소드 설명
ExcludeNamespaces ( ) : Func

Excludes any namespace starting with one of the namespaces provided

ExcludeTypes ( bool inherit ) : Func

Check if the provided object is not an instance of any of the provided types

IncludeNamespaces ( ) : Func

includes any namespace starting with one of the namespaces provided

IncludeTypes ( bool inherit ) : Func

Check if the provided object is an instance of any of the provided types

비공개 메소드들

메소드 설명
IsTheNamespaceYoureLookingFor ( string ns, Type type ) : bool
IsTheTypeYoureLookingFor ( Type typeToFind, Type type, bool inherit ) : bool

메소드 상세

ExcludeNamespaces() 공개 정적인 메소드

Excludes any namespace starting with one of the namespaces provided
public static ExcludeNamespaces ( ) : Func
리턴 Func

ExcludeTypes() 공개 정적인 메소드

Check if the provided object is not an instance of any of the provided types
public static ExcludeTypes ( bool inherit ) : Func
inherit bool when true, returns false if the given object inherits from any of the provided types
리턴 Func

IncludeNamespaces() 공개 정적인 메소드

includes any namespace starting with one of the namespaces provided
public static IncludeNamespaces ( ) : Func
리턴 Func

IncludeTypes() 공개 정적인 메소드

Check if the provided object is an instance of any of the provided types
public static IncludeTypes ( bool inherit ) : Func
inherit bool when true, returns true if the given object inherits from any of the provided types
리턴 Func