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

Provides IProxyDefinitionVisitor extension methods.
Afficher le fichier Open project: mtamme/NProxy

Méthodes publiques

Méthode 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

Méthode 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 méthode

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.
Résultat void

VisitInterfaces() public static méthode

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

VisitMembers() public static méthode

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.
Résultat void