17 references to Import
Microsoft.CodeAnalysis (2)
PEWriter\MetadataWriter.cs (1)
1513result |= TypeAttributes.Import;
Symbols\INamedTypeSymbol.cs (1)
56/// <see cref="TypeAttributes.Import"/> and <see cref="ComImportAttribute"/>
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
2645return (_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)
1068Return (_flags And TypeAttributes.Import) <> 0
Microsoft.VisualBasic.Core (2)
Microsoft\VisualBasic\CompilerServices\Symbols.vb (2)
814ElseIf (curType.Attributes And TypeAttributes.Import) = TypeAttributes.Import Then
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
98public bool IsImport => (GetAttributeFlagsImpl() & TypeAttributes.Import) != 0;
src\System\Reflection\Emit\RuntimeTypeBuilder.cs (1)
911return ((GetAttributeFlagsImpl() & TypeAttributes.Import) != 0) ? true : false;
src\System\Reflection\RuntimeCustomAttributeData.cs (2)
2001if ((type.Attributes & TypeAttributes.Import) != 0) 2020if ((type.Attributes & TypeAttributes.Import) != 0)
System.Reflection.Emit (2)
System\Reflection\Emit\TypeBuilderImpl.cs (2)
477_attributes |= TypeAttributes.Import; 644return ((GetAttributeFlagsImpl() & TypeAttributes.Import) != 0) ? true : false;
System.Reflection.Metadata (3)
System\Reflection\Metadata\TypeSystem\TypeDefinition.cs (3)
224flags |= TypeAttributes.WindowsRuntime | TypeAttributes.Import; 236flags = flags & ~TypeAttributes.Public | TypeAttributes.Import; 240flags = flags & ~TypeAttributes.Public | TypeAttributes.Import;
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoDefinitionType.cs (1)
70if (0 != (Attributes & TypeAttributes.Import))