C# 클래스 NProxy.Core.Internal.Definitions.ProxyDefinitionVisitorExtensions

Provides IProxyDefinitionVisitor extension methods.
파일 보기 프로젝트 열기: mtamme/NProxy

공개 메소드들

메소드 설명
VisitConstructors ( this proxyDefinitionVisitor, Type type ) : void

Visits all constructors of the specified type.

VisitInterfaces ( this proxyDefinitionVisitor, IEnumerable interfaceTypes ) : void

Visits all specified interface types.

VisitMembers ( this proxyDefinitionVisitor, Type type ) : void

Visits all members of the specified type.

비공개 메소드들

메소드 설명
VisitEvents ( this proxyDefinitionVisitor, Type type ) : void

Visits all events of the specified type.

VisitMethods ( this proxyDefinitionVisitor, Type type ) : void

Visits all methods of the specified type.

VisitProperties ( this proxyDefinitionVisitor, Type type ) : void

Visits all properties of the specified type.

메소드 상세

VisitConstructors() 공개 정적인 메소드

Visits all constructors of the specified type.
public static VisitConstructors ( this proxyDefinitionVisitor, Type type ) : void
proxyDefinitionVisitor this The proxy definition visitor.
type System.Type The type.
리턴 void

VisitInterfaces() 공개 정적인 메소드

Visits all specified interface types.
public static VisitInterfaces ( this proxyDefinitionVisitor, IEnumerable interfaceTypes ) : void
proxyDefinitionVisitor this The proxy definition visitor.
interfaceTypes IEnumerable The interface types.
리턴 void

VisitMembers() 공개 정적인 메소드

Visits all members of the specified type.
public static VisitMembers ( this proxyDefinitionVisitor, Type type ) : void
proxyDefinitionVisitor this The proxy definition visitor.
type System.Type The type.
리턴 void