1 type derived from RuntimeAssemblyInfo
System.Private.CoreLib (1)
System\Reflection\Runtime\Assemblies\NativeFormat\NativeFormatRuntimeAssembly.cs (1)
21internal sealed partial class NativeFormatRuntimeAssembly : RuntimeAssemblyInfo
26 references to RuntimeAssemblyInfo
System.Private.CoreLib (26)
Internal\Reflection\Augments\ReflectionAugments.cs (3)
101return RuntimeAssemblyInfo.GetRuntimeAssembly(assemblyRef.ToRuntimeAssemblyName()); 103return RuntimeAssemblyInfo.GetRuntimeAssemblyIfExists(assemblyRef.ToRuntimeAssemblyName()); 432public static Assembly[] GetLoadedAssemblies() => RuntimeAssemblyInfo.GetLoadedAssemblies();
System\Reflection\Runtime\Assemblies\NativeFormat\NativeFormatRuntimeAssembly.GetTypeCore.CaseInsensitive.cs (2)
41RuntimeAssemblyInfo destinationAssembly = RuntimeAssemblyInfo.GetRuntimeAssemblyIfExists(destinationAssemblyName);
System\Reflection\Runtime\Assemblies\NativeFormat\NativeFormatRuntimeAssembly.GetTypeCore.CaseSensitive.cs (2)
47RuntimeAssemblyInfo redirectedAssembly = RuntimeAssemblyInfo.GetRuntimeAssemblyIfExists(redirectedAssemblyName);
System\Reflection\Runtime\Assemblies\RuntimeAssemblyInfo.cs (5)
23internal abstract partial class RuntimeAssemblyInfo : RuntimeAssembly, IEquatable<RuntimeAssemblyInfo> 25public bool Equals(RuntimeAssemblyInfo? other) 104RuntimeAssemblyInfo redirectedAssembly; 288public CaseSensitiveTypeCache(RuntimeAssemblyInfo runtimeAssembly) 298private readonly RuntimeAssemblyInfo _runtimeAssembly;
System\Reflection\Runtime\General\Dispensers.cs (5)
35Exception assemblyLoadException = TryGetRuntimeAssembly(assemblyRefName, out RuntimeAssemblyInfo result); 44internal static RuntimeAssemblyInfo GetRuntimeAssemblyIfExists(RuntimeAssemblyName assemblyRefName) 47if (runtimeAssemblyOrException is RuntimeAssemblyInfo runtimeAssembly) 52internal static Exception TryGetRuntimeAssembly(RuntimeAssemblyName assemblyRefName, out RuntimeAssemblyInfo result) 55if (runtimeAssemblyOrException is RuntimeAssemblyInfo runtimeAssembly)
System\Reflection\Runtime\General\TypeResolver.NativeFormat.cs (2)
219RuntimeAssemblyInfo runtimeAssembly; 220exception = RuntimeAssemblyInfo.TryGetRuntimeAssembly(assemblyName, out runtimeAssembly);
System\Reflection\Runtime\TypeInfos\NativeFormat\NativeFormatRuntimeNamedTypeInfo.cs (1)
37return RuntimeAssemblyInfo.GetRuntimeAssembly(runtimeAssemblyName);
System\Reflection\TypeNameResolver.NativeAot.cs (6)
106assembly = RuntimeAssemblyInfo.GetRuntimeAssemblyIfExists(RuntimeAssemblyName.FromAssemblyNameInfo(assemblyName)); 159if (assembly is RuntimeAssemblyInfo runtimeAssembly) 178RuntimeAssemblyInfo? defaultAssembly = null; 181defaultAssembly = RuntimeAssemblyInfo.GetRuntimeAssemblyIfExists(RuntimeAssemblyName.Parse(_defaultAssemblyName)); 188RuntimeAssemblyInfo? coreLib = null; 191coreLib = (RuntimeAssemblyInfo)typeof(object).Assembly;