10 references to IsAbstract
Microsoft.AspNetCore.Http.Extensions (1)
src\Shared\ParameterBindingMethodCache.cs (1)
444
bool IsMatch(MethodInfo? method) => method is not null && !method.
IsAbstract
&& validateReturnType(method);
Microsoft.AspNetCore.Mvc.Abstractions (1)
src\Shared\ParameterBindingMethodCache.cs (1)
444
bool IsMatch(MethodInfo? method) => method is not null && !method.
IsAbstract
&& validateReturnType(method);
Microsoft.AspNetCore.Mvc.Core (1)
ApplicationModels\DefaultApplicationModelProvider.cs (1)
444
if (methodInfo.
IsAbstract
)
Microsoft.AspNetCore.Mvc.RazorPages (1)
ApplicationModels\DefaultPageApplicationModelPartsProvider.cs (1)
168
if (methodInfo.
IsAbstract
)
Microsoft.AspNetCore.OpenApi (1)
src\Shared\ParameterBindingMethodCache.cs (1)
444
bool IsMatch(MethodInfo? method) => method is not null && !method.
IsAbstract
&& validateReturnType(method);
Microsoft.ML.Data (2)
Utils\ApiUtils.cs (2)
116
var opcode = (minfo.IsVirtual || minfo.
IsAbstract
) ? OpCodes.Callvirt : OpCodes.Call;
180
var opcode = (minfo.IsVirtual || minfo.
IsAbstract
) ? OpCodes.Callvirt : OpCodes.Call;
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Reflection\RuntimeMethodInfo.cs (1)
79
else if (
IsAbstract
)
src\System\RuntimeType.CoreCLR.cs (1)
2212
if (!methodInfo.IsVirtual && !methodInfo.
IsAbstract
)
System.Private.Xml (1)
System\Xml\Xsl\IlGen\GenerateHelper.cs (1)
840
OpCode opcode = meth.IsVirtual || meth.
IsAbstract
? OpCodes.Callvirt : OpCodes.Call;