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