C# Класс Ninject.Selection.Selector

Selects members for injection.
Наследование: Ninject.Components.NinjectComponent, ISelector
Показать файл Открыть проект

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

Метод Описание
SelectConstructorsForInjection ( Type type ) : IEnumerable

Selects the constructor to call on the specified type, by using the constructor scorer.

SelectMethodsForInjection ( Type type ) : IEnumerable

Selects methods that should be injected.

SelectPropertiesForInjection ( Type type ) : IEnumerable

Selects properties that should be injected.

Selector ( IConstructorScorer constructorScorer, IEnumerable injectionHeuristics ) : System

Initializes a new instance of the Selector class.

Приватные методы

Метод Описание
GetPrivateProperties ( Type type ) : IEnumerable

Описание методов

SelectConstructorsForInjection() публичный Метод

Selects the constructor to call on the specified type, by using the constructor scorer.
public SelectConstructorsForInjection ( Type type ) : IEnumerable
type System.Type The type.
Результат IEnumerable

SelectMethodsForInjection() публичный Метод

Selects methods that should be injected.
public SelectMethodsForInjection ( Type type ) : IEnumerable
type System.Type The type.
Результат IEnumerable

SelectPropertiesForInjection() публичный Метод

Selects properties that should be injected.
public SelectPropertiesForInjection ( Type type ) : IEnumerable
type System.Type The type.
Результат IEnumerable

Selector() публичный Метод

Initializes a new instance of the Selector class.
public Selector ( IConstructorScorer constructorScorer, IEnumerable injectionHeuristics ) : System
constructorScorer IConstructorScorer The constructor scorer.
injectionHeuristics IEnumerable The injection heuristics.
Результат System