Base:
property
Type
System.Linq.Expressions.Expression.Type
25 references to Type
System.Activities (4)
Microsoft\VisualBasic\Activities\VisualBasicHelper.cs (3)
328
return Expression.Lambda(rawTree.
Type
, finalBody, rawTree.Parameters);
404
return Expression.Lambda(lambda.
Type
, finalBody, lambda.Parameters);
789
return Expression.Lambda(lambda.
Type
, expr1, lambda.Parameters);
System\Activities\ExpressionUtilities.cs (1)
982
lambda.
Type
,
System.Core (13)
Microsoft\Scripting\Ast\BinaryExpression.cs (2)
1338
Type delegateType = conversion.
Type
;
1475
Type delegateType = conversion.
Type
;
Microsoft\Scripting\Ast\DebugViewWriter.cs (2)
436
node.
Type
.ToString()
1131
lambda.
Type
.ToString())
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
236
public Type Type { get { return _node.
Type
; } }
Microsoft\Scripting\Ast\LambdaExpression.cs (2)
74
/// <returns>The <see cref="
Type
"/> that represents the static type of the expression.</returns>
113
get { return
Type
.GetMethod("Invoke").ReturnType; }
Microsoft\Scripting\Compiler\LambdaCompiler.cs (1)
300
return _method.CreateDelegate(_lambda.
Type
, new Closure(_boundConstants.ToArray(), null));
Microsoft\Scripting\Compiler\LambdaCompiler.Expressions.cs (1)
197
List<WriteBack> wb = EmitArguments(lambda.
Type
.GetMethod("Invoke"), invoke);
Microsoft\Scripting\Compiler\LambdaCompiler.Lambda.cs (1)
89
Type delegateType = inner._lambda.
Type
;
Microsoft\Scripting\Compiler\LambdaCompiler.Logical.cs (2)
141
_ilg.Emit(OpCodes.Callvirt, b.Conversion.
Type
.GetMethod("Invoke"));
187
_ilg.Emit(OpCodes.Callvirt, b.Conversion.
Type
.GetMethod("Invoke"));
System\Linq\Expressions\ExpressionVisitor.cs (1)
265
return Expression.Lambda(lambda.
Type
, body, lambda.Parameters);
System.Data.Entity (2)
System\Data\Objects\ELinq\EntityExpressionVisitor.cs (1)
311
return Expression.Lambda(lambda.
Type
, body, lambda.Parameters);
System\Data\Objects\ELinq\LinqExpressionNormalizer.cs (1)
414
normalized = Expression.Lambda(lambda.
Type
, Expression.Convert(coalesce.Left, typeof(bool)), lambda.Parameters);
System.Data.Linq (2)
SqlClient\Query\Funcletizer.cs (1)
387
return Expression.Lambda(lambda.
Type
, body, lambda.Parameters);
SqlClient\Query\QueryConverter.cs (1)
1649
lambda = Expression.Lambda(selectionLambda.
Type
, selectionLambda.Body, selectionLambda.Parameters);
System.Data.Services (1)
parent\Client\System\Data\Services\Client\ALinq\ALinqExpressionVisitor.cs (1)
503
return Expression.Lambda(lambda.
Type
, body, lambda.Parameters);
System.Data.Services.Client (2)
System\Data\Services\Client\ALinq\ALinqExpressionVisitor.cs (1)
503
return Expression.Lambda(lambda.
Type
, body, lambda.Parameters);
System\Data\Services\Client\ALinq\ExpressionNormalizer.cs (1)
494
normalized = Expression.Lambda(lambda.
Type
, Expression.Convert(coalesce.Left, typeof(bool)), lambda.Parameters);
System.Web.Extensions (1)
UI\WebControls\Dynamic.cs (1)
1120
if (FindMethod(lambda.
Type
, "Invoke", false, args, out method) != 1)