4 overrides of GetExportedTypes
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\AssemblyBuilder.cs (1)
63public override Type[] GetExportedTypes() =>
src\System\Reflection\RuntimeAssembly.cs (1)
250public override Type[] GetExportedTypes()
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
108public override Type[] GetExportedTypes()
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Assemblies\RoAssembly.cs (1)
80public sealed override Type[] GetExportedTypes()
15 references to GetExportedTypes
Aspire.Hosting.Tests (1)
DcpVisibilityTests.cs (1)
13var types = hostingAssembly.GetExportedTypes();
Microsoft.AspNetCore.Components.Endpoints (1)
Discovery\IRazorComponentApplication.cs (1)
22var exported = assembly.GetExportedTypes();
Microsoft.Build (3)
BuildCheck\Acquisition\BuildCheckAcquisitionModule.cs (1)
43Type[] availableTypes = assembly.GetExportedTypes();
TypeLoader.cs (2)
384foreach (Type publicType in loadedAssembly.GetExportedTypes()) 414Type[] allPublicTypesInAssembly = _loadedAssembly.GetExportedTypes();
Microsoft.Build.Tasks.Core (1)
RoslynCodeTaskFactory\RoslynCodeTaskFactory.cs (1)
172Type[] exportedTypes = assembly.GetExportedTypes();
Microsoft.JSInterop (1)
Infrastructure\DotNetDispatcher.cs (1)
439var exportedTypes = GetRequiredLoadedAssembly(assemblyKey).GetExportedTypes();
Microsoft.Maui.Controls (1)
Visuals\VisualTypeConverter.cs (1)
80 foreach (var type in assembly.GetExportedTypes())
MSBuild (2)
TypeLoader.cs (2)
384foreach (Type publicType in loadedAssembly.GetExportedTypes()) 414Type[] allPublicTypesInAssembly = _loadedAssembly.GetExportedTypes();
MSBuildTaskHost (1)
TypeLoader.cs (1)
316Type[] allPublicTypesInAssembly = _loadedAssembly.GetExportedTypes();
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Reflection\Assembly.cs (1)
74get => GetExportedTypes();
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
110return UnderlyingAssembly.GetExportedTypes();
System.Reflection.TypeExtensions (1)
System\Reflection\TypeExtensions.cs (1)
377return assembly.GetExportedTypes();
System.Windows.Forms.Primitives.Tests (1)
System\Private\Windows\Core\PrivateCoreTests.cs (1)
12typeof(BufferScope<>).Assembly.GetExportedTypes().Should().BeEmpty();