16 references to Import
Microsoft.CodeAnalysis (2)
PEWriter\MetadataWriter.cs (1)
1506result |= TypeAttributes.Import;
Symbols\INamedTypeSymbol.cs (1)
55/// <see cref="TypeAttributes.Import"/> and <see cref="ComImportAttribute"/>
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
2479return (_flags & TypeAttributes.Import) != 0;
Microsoft.CodeAnalysis.Test.Utilities (1)
Platform\Custom\MetadataSignatureHelper.cs (1)
399if ((attributes & TypeAttributes.Import) != 0)
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\Metadata\PE\PENamedTypeSymbol.vb (1)
1067Return (_flags And TypeAttributes.Import) <> 0
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1)
Emit\NoPiaEmbedTypes.vb (1)
1020Assert.Equal(TypeAttributes.Public Or TypeAttributes.AutoLayout Or TypeAttributes.Interface Or TypeAttributes.Abstract Or TypeAttributes.Import Or TypeAttributes.AnsiClass, itest1.TypeDefFlags)
Microsoft.VisualBasic.Core (2)
Microsoft\VisualBasic\CompilerServices\Symbols.vb (2)
814ElseIf (curType.Attributes And TypeAttributes.Import) = TypeAttributes.Import Then
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
98public bool IsImport => (GetAttributeFlagsImpl() & TypeAttributes.Import) != 0;
src\System\Reflection\Emit\RuntimeTypeBuilder.cs (1)
917return ((GetAttributeFlagsImpl() & TypeAttributes.Import) != 0) ? true : false;
System.Reflection.Emit (2)
System\Reflection\Emit\TypeBuilderImpl.cs (2)
489_attributes |= TypeAttributes.Import; 655return ((GetAttributeFlagsImpl() & TypeAttributes.Import) != 0) ? true : false;
System.Reflection.Metadata (3)
System\Reflection\Metadata\TypeSystem\TypeDefinition.cs (3)
228flags |= TypeAttributes.WindowsRuntime | TypeAttributes.Import; 240flags = flags & ~TypeAttributes.Public | TypeAttributes.Import; 244flags = flags & ~TypeAttributes.Public | TypeAttributes.Import;
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoDefinitionType.cs (1)
70if (0 != (Attributes & TypeAttributes.Import))