1 type derived from RuntimeAssembly
System.Private.CoreLib (1)
System\Reflection\Runtime\Assemblies\RuntimeAssemblyInfo.cs (1)
23
internal abstract partial class RuntimeAssemblyInfo :
RuntimeAssembly
, IEquatable<RuntimeAssemblyInfo>
22 references to RuntimeAssembly
System.Private.CoreLib (22)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Assembly.cs (1)
236
if (assembly is not
RuntimeAssembly
)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Resources\ManifestBasedResourceGroveler.cs (1)
272
return
RuntimeAssembly
.InternalGetSatelliteAssembly(mainAssembly, culture, version, throwOnFileNotFound: false);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Resources\ResourceManager.cs (2)
191
if (assembly is not
RuntimeAssembly
)
207
if (assembly is not
RuntimeAssembly
)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NativeLibrary.cs (3)
89
if (assembly is not
RuntimeAssembly
)
124
if (assembly is not
RuntimeAssembly
)
206
if (assembly is not
RuntimeAssembly
)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Loader\AssemblyLoadContext.cs (5)
844
private
RuntimeAssembly
? ResolveSatelliteAssembly(AssemblyName assemblyName)
856
RuntimeAssembly
parentAssembly = (
RuntimeAssembly
)LoadFromAssemblyName(new AssemblyName(parentAssemblyName));
897
RuntimeAssembly
? asm = exists ? (
RuntimeAssembly
?)parentALC.LoadFromAssemblyPath(assemblyPath) : null;
System\Reflection\Runtime\General\Dispensers.cs (5)
33
internal static
RuntimeAssembly
GetRuntimeAssembly(RuntimeAssemblyName assemblyRefName)
81
private static
RuntimeAssembly
GetRuntimeAssembly(AssemblyBindResult bindResult, string assemblyPath = null)
83
RuntimeAssembly
? result = null;
97
static partial void GetNativeFormatRuntimeAssembly(AssemblyBindResult bindResult, ref
RuntimeAssembly
? runtimeAssembly);
98
static partial void GetEcmaRuntimeAssembly(AssemblyBindResult bindResult, string assemblyPath, ref
RuntimeAssembly
? runtimeAssembly);
System\Reflection\Runtime\General\Dispensers.NativeFormat.cs (5)
34
static partial void GetNativeFormatRuntimeAssembly(AssemblyBindResult bindResult, ref
RuntimeAssembly
? runtimeAssembly)
46
internal static
RuntimeAssembly
GetRuntimeAssembly(MetadataReader reader, ScopeDefinitionHandle scope)
51
private static readonly Dispenser<RuntimeAssemblyKey,
RuntimeAssembly
> s_scopeToAssemblyDispenser =
52
DispenserFactory.CreateDispenserV<RuntimeAssemblyKey,
RuntimeAssembly
>(
56
return (
RuntimeAssembly
)new NativeFormat.NativeFormatRuntimeAssembly(qScopeDefinition.Reader, qScopeDefinition.Handle);