40 references to Abstract
Aspire.Hosting.RemoteHost.Tests (2)
AtsCapabilityScannerTests.cs (1)
981TypeAttributes.Public | TypeAttributes.Abstract | TypeAttributes.Sealed);
AttributeDataReaderTests.cs (1)
298TypeAttributes.Public | TypeAttributes.Abstract | TypeAttributes.Sealed);
dotnet-svcutil-lib (9)
FrameworkFork\Microsoft.CodeDom\Compiler\CodeGenerator.cs (2)
1394if ((attributes & TypeAttributes.Abstract) == TypeAttributes.Abstract)
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (2)
3221if ((attributes & TypeAttributes.Abstract) == TypeAttributes.Abstract)
FrameworkFork\Microsoft.CodeDom\Microsoft\VBCodeProvider.cs (2)
1056if ((attributes & TypeAttributes.Abstract) == TypeAttributes.Abstract)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapCodeExporter.cs (1)
150codeClass.TypeAttributes |= TypeAttributes.Abstract;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlCodeExporter.cs (1)
595codeClass.TypeAttributes |= TypeAttributes.Abstract;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationILGen.cs (1)
271TypeAttributes.Public | TypeAttributes.Abstract | TypeAttributes.BeforeFieldInit,
ILAssembler (5)
GrammarVisitor.cs (5)
1003return new((new(TypeAttributes.Interface | TypeAttributes.Abstract), null, false)); 1039return new((new(TypeAttributes.Abstract), null, false)); 1353return acc | TypeAttributes.Interface | TypeAttributes.Abstract; 1445return acc | TypeAttributes.Interface | TypeAttributes.Abstract; 4394if (methodDefinition.MethodAttributes.HasFlag(MethodAttributes.Abstract) && !methodDefinition.ContainingType.Attributes.HasFlag(TypeAttributes.Abstract))
ILCompiler.TypeSystem (1)
parent\parent\Common\TypeSystem\Ecma\EcmaType.cs (1)
668return (_typeDefinition.Attributes & TypeAttributes.Abstract) != 0;
Microsoft.CodeAnalysis (1)
PEWriter\MetadataWriter.cs (1)
1493result |= TypeAttributes.Abstract;
Microsoft.CodeAnalysis.CSharp (4)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (4)
2133(_flags & TypeAttributes.Abstract) != 0; 2142(_flags & TypeAttributes.Abstract) != 0 && 2151return (_flags & TypeAttributes.Abstract) != 0; 2161(_flags & TypeAttributes.Abstract) == 0;
Microsoft.CodeAnalysis.VisualBasic (2)
Symbols\Metadata\PE\PENamedTypeSymbol.vb (2)
878Return (_flags And TypeAttributes.Abstract) <> 0 AndAlso 885Return (_flags And TypeAttributes.Abstract) <> 0
Microsoft.CodeAnalysis.Workspaces (1)
FindSymbols\SymbolTree\SymbolTreeInfo_Metadata.cs (1)
459=> (typeDefinition.Attributes & TypeAttributes.Abstract) != 0 &&
System.CodeDom (6)
Microsoft\CSharp\CSharpCodeGenerator.cs (2)
2360if ((attributes & TypeAttributes.Abstract) == TypeAttributes.Abstract)
Microsoft\VisualBasic\VBCodeGenerator.cs (2)
740if ((attributes & TypeAttributes.Abstract) == TypeAttributes.Abstract)
System\CodeDom\Compiler\CodeGenerator.cs (2)
1152if ((attributes & TypeAttributes.Abstract) == TypeAttributes.Abstract)
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
97public bool IsAbstract => (GetAttributeFlagsImpl() & TypeAttributes.Abstract) != 0;
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.cs (1)
567public bool IsAbstract => (Attributes & TypeAttributes.Abstract) != 0;
System.Private.Xml (1)
System\Xml\Serialization\XmlSerializationILGen.cs (1)
275TypeAttributes.Public | TypeAttributes.Abstract | TypeAttributes.BeforeFieldInit,
System.Reflection.Emit (4)
System\Reflection\Emit\TypeBuilderImpl.cs (4)
115((_attributes & (TypeAttributes.Abstract | TypeAttributes.Sealed)) != (TypeAttributes.Abstract | TypeAttributes.Sealed))) 136if ((_attributes & TypeAttributes.Abstract) == 0) 569if ((_attributes & TypeAttributes.Abstract) == 0)
System.Reflection.Metadata (1)
System\Reflection\Metadata\TypeSystem\TypeDefinition.cs (1)
250flags |= TypeAttributes.Abstract;
System.Runtime.InteropServices (1)
System\Runtime\InteropServices\Marshalling\ComImportInteropInterfaceDetailsStrategy.cs (1)
77TypeBuilder implementation = module.DefineType("InterfaceForwarder", TypeAttributes.Interface | TypeAttributes.Abstract, parent: null, interfaces: runtimeType.GetInterfaces());