8 references to IsAbstract
mscorlib (3)
system\reflection\methodbase.cs (1)
378
bool _MethodBase.IsAbstract { get { return
IsAbstract
; } }
system\reflection\methodinfo.cs (1)
693
else if (
IsAbstract
)
system\rttype.cs (1)
2470
if (!methodInfo.IsVirtual && !methodInfo.
IsAbstract
)
System.Data.Services (3)
System\Data\Services\DataServiceConfiguration.cs (2)
1016
if (!method.
IsAbstract
)
1087
if (!method.
IsAbstract
)
System\Data\Services\Providers\BaseServiceProvider.cs (1)
718
Debug.Assert(!method.
IsAbstract
, "!method.IsAbstract - if method is abstract, the type is abstract - already checked");
System.Data.SqlXml (2)
System\Xml\Xsl\IlGen\GenerateHelper.cs (2)
809
OpCode opcode = meth.IsVirtual || meth.
IsAbstract
? OpCodes.Callvirt : OpCodes.Call;
831
OpCode opcode = meth.IsVirtual || meth.
IsAbstract
? OpCodes.Callvirt : OpCodes.Call;