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)
241public 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)
79public sealed override Type[] GetExportedTypes()
8 references to GetExportedTypes
Aspire.Hosting.Tests (1)
DcpVisibilityTests.cs (1)
12var types = hostingAssembly.GetExportedTypes();
Microsoft.AspNetCore.Components.Endpoints (1)
Discovery\IRazorComponentApplication.cs (1)
22var exported = 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())
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();