25 references to Arguments
Microsoft.AspNetCore.Components.Forms (3)
FieldIdentifier.cs (1)
141fieldName = ExpressionFormatter.FormatIndexArgument(methodCallExpression.Arguments[0]);
src\Components\Shared\src\ExpressionFormatting\ExpressionFormatter.cs (2)
75FormatIndexArgument(methodCallExpression.Arguments[0], ref builder); 145if (expression is not MethodCallExpression methodExpression || methodExpression.Arguments.Count != 1)
Microsoft.AspNetCore.Components.Web (2)
src\Components\Shared\src\ExpressionFormatting\ExpressionFormatter.cs (2)
75FormatIndexArgument(methodCallExpression.Arguments[0], ref builder); 145if (expression is not MethodCallExpression methodExpression || methodExpression.Arguments.Count != 1)
Microsoft.AspNetCore.Http.Extensions.Tests (1)
ParameterBindingMethodCacheTests.cs (1)
113Assert.True(((call.Arguments[1] as ConstantExpression)!.Value as CultureInfo)!.Equals(CultureInfo.InvariantCulture));
Microsoft.AspNetCore.JsonPatch (1)
JsonPatchDocumentOfT.cs (1)
690listOfSegments.Add(EvaluateExpression(methodCallExpression.Arguments[0]));
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
ExpressionHelper.cs (2)
151InsertIndexerInvocationText(builder, methodExpression.Arguments.Single(), expression); 237if (!(expression is MethodCallExpression methodExpression) || methodExpression.Arguments.Count != 1)
System.ComponentModel.Composition.Registration (2)
System\ComponentModel\Composition\Registration\PartBuilderOfT.cs (2)
121if (methodCallExpression.Arguments.Count == 1) 123Expression parameter = methodCallExpression.Arguments[0];
System.Composition.Convention (2)
System\Composition\Convention\PartConventionBuilderOfT.cs (2)
183if (methodCallExpression.Arguments.Count == 1) 185Expression parameter = methodCallExpression.Arguments[0];
System.Linq.Expressions (10)
System\Linq\Expressions\DebugViewWriter.cs (1)
782VisitExpressions('(', node.Arguments);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
321public ReadOnlyCollection<Expression> Arguments => _node.Arguments;
System\Linq\Expressions\MethodCallExpression.cs (8)
60/// <param name="arguments">The <see cref="Arguments"/> property of the result.</param> 1129/// <returns>A <see cref="MethodCallExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.Call"/>, the <see cref="MethodCallExpression.Object"/> property equal to <paramref name="instance"/>, <see cref="MethodCallExpression.Method"/> set to the <see cref="MethodInfo"/> that represents the specified instance method, and <see cref="MethodCallExpression.Arguments"/> set to the specified arguments.</returns> 1153/// <returns>A <see cref="MethodCallExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.Call"/>, the <see cref="MethodCallExpression.Method"/> property set to the <see cref="MethodInfo"/> that represents the specified static (Shared in Visual Basic) method, and the <see cref="MethodCallExpression.Arguments"/> property set to the specified arguments.</returns> 1181/// <returns>A <see cref="MethodCallExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.Call"/> and the <see cref="MethodCallExpression.Object"/>, <see cref="MethodCallExpression.Method"/>, and <see cref="MethodCallExpression.Arguments"/> properties set to the specified values.</returns> 1184/// <param name="arguments">An <see cref="IEnumerable{Expression}"/> that contains <see cref="Expression"/> objects to use to populate the <see cref="MethodCallExpression.Arguments"/> collection.</param> 1395/// <param name="indexes">An array that contains <see cref="Expression"/> objects to use to populate the <see cref="MethodCallExpression.Arguments"/> collection.</param> 1402/// <returns>A <see cref="MethodCallExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.Call"/> and the <see cref="MethodCallExpression.Object"/> and <see cref="MethodCallExpression.Arguments"/> properties set to the specified values.</returns> 1404/// <param name="indexes">An <see cref="IEnumerable{T}"/> that contains <see cref="Expression"/> objects to use to populate the <see cref="MethodCallExpression.Arguments"/> collection.</param>
System.Linq.Queryable (2)
System\Linq\EnumerableRewriter.cs (2)
31ReadOnlyCollection<Expression> args = Visit(m.Arguments); 34if (obj != m.Object || args != m.Arguments)