Base:
property
Type
System.Linq.Expressions.Expression.Type
14 references to Type
Microsoft.AspNetCore.Http.Extensions (1)
src\Shared\ObjectMethodExecutor\ObjectMethodExecutor.cs (1)
222
if (methodCall.
Type
== typeof(void))
Microsoft.AspNetCore.Mvc.Core (1)
src\Shared\ObjectMethodExecutor\ObjectMethodExecutor.cs (1)
222
if (methodCall.
Type
== typeof(void))
Microsoft.AspNetCore.OpenApi (1)
src\Shared\ObjectMethodExecutor\ObjectMethodExecutor.cs (1)
222
if (methodCall.
Type
== typeof(void))
Microsoft.AspNetCore.Shared.Tests (1)
src\Shared\ObjectMethodExecutor\ObjectMethodExecutor.cs (1)
222
if (methodCall.
Type
== typeof(void))
Microsoft.AspNetCore.SignalR.Core (1)
src\Shared\ObjectMethodExecutor\ObjectMethodExecutor.cs (1)
222
if (methodCall.
Type
== typeof(void))
System.Linq.Expressions (9)
System\Linq\Expressions\Compiler\LambdaCompiler.Binary.cs (2)
103
resultType = mc.
Type
.LiftPrimitiveOrThrow();
107
Debug.Assert(mc.
Type
== typeof(bool));
System\Linq\Expressions\Compiler\LambdaCompiler.Expressions.cs (5)
1114
Debug.Assert(TypeUtils.AreEquivalent(resultType.GetNonNullableType(), mc.
Type
.GetNonNullableType()));
1162
if (resultType.IsNullableType() && !TypeUtils.AreEquivalent(resultType, mc.
Type
))
1169
if (TypeUtils.AreEquivalent(resultType, mc.
Type
.GetNullableType()))
1200
if (TypeUtils.AreEquivalent(resultType, mc.
Type
.GetNullableType()))
1266
if (resultType.IsNullableType() && !TypeUtils.AreEquivalent(resultType, mc.
Type
))
System\Linq\Expressions\Compiler\LambdaCompiler.Unary.cs (1)
357
Type resultType = mc.
Type
.GetNullableType();
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
327
public Type Type => _node.
Type
;