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