Catel.ReSharper.Arguments.IsNotOutOfRangeContextAction.IsArgumentChecked C# (CSharp) 메소드

IsArgumentChecked() 보호된 메소드

protected IsArgumentChecked ( ICSharpFunctionDeclaration methodDeclaration, IRegularParameterDeclaration parameterDeclaration ) : bool
methodDeclaration ICSharpFunctionDeclaration
parameterDeclaration IRegularParameterDeclaration
리턴 bool
        protected override bool IsArgumentChecked(
            ICSharpFunctionDeclaration methodDeclaration, IRegularParameterDeclaration parameterDeclaration)
        {
            // TODO: Verify the completion of the condition || (InvokationDetectionHelper.IsMaximunInvoked(methodDeclaration.Body.GetText(), parameterDeclaration.DeclaredName) && InvokationDetectionHelper.IsMinimalInvoked(methodDeclaration.Body.GetText(), parameterDeclaration.DeclaredName));
            return ArgumentCheckStatementDetectionHelper.IsNotOutOfRangeInvoked(
                methodDeclaration.Body.GetText(), parameterDeclaration.DeclaredName);
        }