Ancestry.Daisy.Statements.ReflectionStatementDefinition.ReflectionStatementDefinition C# (CSharp) Method

ReflectionStatementDefinition() public method

public ReflectionStatementDefinition ( MethodInfo methodInfo, Type controllerType ) : System
methodInfo System.Reflection.MethodInfo
controllerType System.Type
return System
        public ReflectionStatementDefinition(MethodInfo methodInfo, Type controllerType)
        {
            MethodInfo = methodInfo;
            ControllerType = controllerType;
            MatchingCriteria = GetMatchingCriteria();
            ScopeType = controllerType.GetProperty("Scope").PropertyType;
            IsolateParameters(methodInfo);
        }