36 references to Call
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemImpl.cs (1)
545System.Linq.Expressions.Expression valueExp = System.Linq.Expressions.Expression.Call(s, setPropertyValueMethodInfo, System.Linq.Expressions.Expression.Constant(binder.Name), objectValue);
System.Core (5)
Microsoft\Scripting\Actions\ExpandoObject.cs (1)
842Expression.Call(
Microsoft\Scripting\Ast\MethodCallExpression.cs (2)
455return Expression.Call(instance, Method, args[0], args[1]); 457return Expression.Call(instance, Method, ReturnObject<Expression>(_arg0), _arg1);
Microsoft\Scripting\Compiler\LambdaCompiler.Binary.cs (2)
104MethodCallExpression mc = Expression.Call(null, b.Method, p1, p2); 131EmitMethodCallExpression(Expression.Call(null, b.Method, b.Left, b.Right), flags);
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemImpl.cs (1)
545System.Linq.Expressions.Expression valueExp = System.Linq.Expressions.Expression.Call(s, setPropertyValueMethodInfo, System.Linq.Expressions.Expression.Constant(binder.Name), objectValue);
System.Data.Entity (9)
System\Data\Common\Internal\Materialization\CoordinatorScratchpad.cs (2)
376Expression.Call( 452Expression.Call(
System\Data\Common\Internal\Materialization\Translator.cs (5)
1074result = Expression.Call(Shaper_Parameter, Shaper_GetSpatialColumnValueWithErrorHandling.MakeGenericMethod(resultType), Expression.Constant(ordinal), Expression.Constant(primitiveColumnType, typeof(PrimitiveTypeKind))); 1119Expression result = Expression.Call(Shaper_Parameter, Shaper_SetState.MakeGenericMethod(value.Type), Expression.Constant(stateSlotNumber), value); 1129Expression result = Expression.Call(Shaper_Parameter, Shaper_SetStatePassthrough.MakeGenericMethod(value.Type), Expression.Constant(stateSlotNumber), value); 1257constructEntity = Expression.Call(Shaper_Parameter, Shaper_HandleIEntityWithKey.MakeGenericMethod(clrType), 1461discriminatorMatches = Expression.Call(Expression.Constant(TrailingSpaceStringComparer.Instance), IEqualityComparerOfString_Equals, discriminatorConstant, discriminatorReader);
System\Data\Objects\Internal\EntityProxyTypeInfo.cs (1)
126Expression.Call(Expression.Convert(Object_Parameter, proxyType), baseSetterMethod, PropertyName_Parameter, PropertyValue_Parameter),
System\Data\SqlClient\SqlTypesAssembly.cs (1)
528var ex = Expression.Lambda<Func<TArg, int, object>>(Expression.Call(null, staticCtorMethod, sqlData, sridParam), dataParam, sridParam);
System.Data.Services (20)
System\Data\Services\Internal\PropertyAccessVisitor.cs (1)
74return Expression.Call(m.Object, m.Method, operand, m.Arguments[1]);
System\Data\Services\Parsing\FunctionDescription.cs (4)
350return Expression.Call(null, DataServiceProviderMethods.TypeIsMethodInfo, target, arguments[0]); 367return Expression.Call(null, callOpenTypeMethod ? OpenTypeMethods.TypeIsMethodInfo : DataServiceProviderMethods.TypeIsMethodInfo, arguments[0], arguments[1]); 416return Expression.Call(null, DataServiceProviderMethods.ConvertMethodInfo, target, arguments[0]); 433return Expression.Call(null, callOpenTypeMethod ? OpenTypeMethods.ConvertMethodInfo : DataServiceProviderMethods.ConvertMethodInfo, arguments[0], arguments[1]);
System\Data\Services\Parsing\RequestQueryParser.cs (6)
934left = Expression.Call(null, comparisonMethodInfo, left, right); 955left = Expression.Call(null, comparisonMethodInfo, left, right); 976left = Expression.Call(null, comparisonMethodInfo, left, right); 997left = Expression.Call(null, comparisonMethodInfo, left, right); 2073propertyAccess = Expression.Call( 2113Expression.Call(null /* instance */, OpenTypeMethods.GetValueOpenPropertyMethodInfo, instance, Expression.Constant(id));
System\Data\Services\Providers\BasicExpandProvider.cs (4)
1265expression = Expression.Call(null /* instance */, getter, source, Expression.Constant(property)); 1269expression = Expression.Call( 1309Expression expression = Expression.Call( 1697Expression.Call(
System\Data\Services\RequestQueryProcessor.cs (1)
467e = Expression.Call(
System\Data\Services\RequestUriProcessor.cs (4)
1161Expression body = Expression.Call(null /* instance */, OpenTypeMethods.GetValueOpenPropertyMethodInfo, parameter, Expression.Constant(propertyName)); 1180Expression body = Expression.Call(null /*instance*/, DataServiceProviderMethods.GetValueMethodInfo, parameter, Expression.Constant(property)); 1202Expression body = Expression.Call(null /*instance*/, getter, parameter, Expression.Constant(property)); 1244e = Expression.Call(null /*instance*/, DataServiceProviderMethods.GetValueMethodInfo, parameter, Expression.Constant(keyProperty));