C# Class LinFu.IoC.Configuration.MethodFinderContext

Represents the data associated with a IMethodFinder{T} search.
Inheritance: IMethodFinderContext
ファイルを表示 Open project: philiplaureano/LinFu Class Usage Examples

Public Methods

Method Description
MethodFinderContext ( ) : System

Initializes the context with the default values.

MethodFinderContext ( IEnumerable typeArguments, IEnumerable arguments, Type returnType ) : System

Initializes the context with the default values.

Method Details

MethodFinderContext() public method

Initializes the context with the default values.
public MethodFinderContext ( ) : System
return System

MethodFinderContext() public method

Initializes the context with the default values.
public MethodFinderContext ( IEnumerable typeArguments, IEnumerable arguments, Type returnType ) : System
typeArguments IEnumerable The type arguments that will be used to construct the target method.
arguments IEnumerable The list of arguments that will be passed to the target method.
returnType System.Type The type that must be returned by the target method.
return System