C# 클래스 Ninject.Selection.Selector

Selects members for injection.
상속: Ninject.Components.NinjectComponent, ISelector
파일 보기 프로젝트 열기: ninject/Ninject

공개 메소드들

메소드 설명
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