C# 클래스 Isop.Controller.ControllerRecognizer

파일 보기 프로젝트 열기: Lundalogik/isop

공개 메소드들

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

비공개 메소드들

메소드 설명
FindMethodInfo ( IList arg ) : MethodInfo

메소드 상세

ControllerRecognizer() 공개 메소드

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
리턴 System

GetRecognizers() 공개 메소드

public GetRecognizers ( string methodname ) : IEnumerable
methodname string
리턴 IEnumerable

Parse() 공개 메소드

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
리턴 ParsedMethod

Parse() 공개 메소드

public Parse ( MethodInfo methodInfo, ParsedArguments parsedArguments ) : ParsedMethod
methodInfo System.Reflection.MethodInfo
parsedArguments Isop.Parse.ParsedArguments
리턴 ParsedMethod

ParseArgumentsAndMerge() 공개 메소드

public ParseArgumentsAndMerge ( ParsedArguments parsedArguments, Action action = null ) : ParsedArguments
parsedArguments Isop.Parse.ParsedArguments
action Action
리턴 Isop.Parse.ParsedArguments

Recognize() 공개 메소드

public Recognize ( IEnumerable arg ) : bool
arg IEnumerable
리턴 bool