C# Class Isop.Controller.ControllerRecognizer

Afficher le fichier Open project: Lundalogik/isop

Méthodes publiques

Méthode Description
ControllerRecognizer ( Type type, CultureInfo cultureInfo = null, Func typeConverter = null, bool ignoreGlobalUnMatchedParameters = false, bool allowInferParameter = false ) : System

GetRecognizers ( string methodname ) : IEnumerable
Parse ( IEnumerable arg ) : ParsedMethod

Note that in order to register a converter you can use: TypeDescriptor.AddAttributes(typeof(AType), new TypeConverterAttribute(typeof(ATypeConverter)));

Parse ( MethodInfo methodInfo, ParsedArguments parsedArguments ) : ParsedMethod
ParseArgumentsAndMerge ( ParsedArguments parsedArguments, Action action = null ) : ParsedArguments
Recognize ( IEnumerable arg ) : bool

Private Methods

Méthode Description
FindMethodInfo ( IList arg ) : MethodInfo

Method Details

ControllerRecognizer() public méthode

public ControllerRecognizer ( Type type, CultureInfo cultureInfo = null, Func typeConverter = null, bool ignoreGlobalUnMatchedParameters = false, bool allowInferParameter = false ) : System
type System.Type
cultureInfo System.Globalization.CultureInfo
typeConverter Func
ignoreGlobalUnMatchedParameters bool
allowInferParameter bool
Résultat System

GetRecognizers() public méthode

public GetRecognizers ( string methodname ) : IEnumerable
methodname string
Résultat IEnumerable

Parse() public méthode

Note that in order to register a converter you can use: TypeDescriptor.AddAttributes(typeof(AType), new TypeConverterAttribute(typeof(ATypeConverter)));
public Parse ( IEnumerable arg ) : ParsedMethod
arg IEnumerable
Résultat ParsedMethod

Parse() public méthode

public Parse ( MethodInfo methodInfo, ParsedArguments parsedArguments ) : ParsedMethod
methodInfo System.Reflection.MethodInfo
parsedArguments Isop.Parse.ParsedArguments
Résultat ParsedMethod

ParseArgumentsAndMerge() public méthode

public ParseArgumentsAndMerge ( ParsedArguments parsedArguments, Action action = null ) : ParsedArguments
parsedArguments Isop.Parse.ParsedArguments
action Action
Résultat Isop.Parse.ParsedArguments

Recognize() public méthode

public Recognize ( IEnumerable arg ) : bool
arg IEnumerable
Résultat bool