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