C# Класс NProxy.Core.Internal.Definitions.ProxyDefinitionVisitorExtensions

Provides IProxyDefinitionVisitor extension methods.
Показать файл Открыть проект

Открытые методы

Метод Описание
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