C# Class NProxy.Core.Internal.Definitions.ProxyDefinitionVisitorExtensions

Provides IProxyDefinitionVisitor extension methods.
Exibir arquivo Open project: mtamme/NProxy

Public Methods

Method Description
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.

Private Methods

Method Description
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.

Method Details

VisitConstructors() public static method

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.
return void

VisitInterfaces() public static method

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

VisitMembers() public static method

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.
return void