11 references to WindowsRuntime
ILAssembler (1)
GrammarVisitor.cs (1)
1047return new((new(TypeAttributes.WindowsRuntime), null, false));
ILCompiler.TypeSystem (1)
parent\parent\Common\TypeSystem\Ecma\EcmaType.TypeEquivalence.cs (1)
132return _typeDefinition.Attributes.HasFlag(TypeAttributes.WindowsRuntime);
Microsoft.CodeAnalysis (2)
MetadataReader\TypeAttributesExtensions.cs (1)
21return (flags & TypeAttributes.WindowsRuntime) != 0;
PEWriter\MetadataWriter.cs (1)
1523result |= TypeAttributes.WindowsRuntime;
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
2846return (_flags & TypeAttributes.WindowsRuntime) != 0;
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\Metadata\PE\PENamedTypeSymbol.vb (1)
903Return (_flags And TypeAttributes.WindowsRuntime) <> 0
System.Reflection.Emit (1)
System\Reflection\Emit\TypeBuilderImpl.cs (1)
480_attributes |= TypeAttributes.WindowsRuntime;
System.Reflection.Metadata (4)
System\Reflection\Metadata\MetadataReader.WinMD.cs (2)
230if ((flags & TypeAttributes.WindowsRuntime) != 0) 397if ((parentFlags & TypeAttributes.WindowsRuntime) != 0)
System\Reflection\Metadata\TypeSystem\TypeDefinition.cs (2)
224flags |= TypeAttributes.WindowsRuntime | TypeAttributes.Import; 228flags |= TypeAttributes.WindowsRuntime | TypeAttributes.Sealed;