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>
25 references to RuntimeAssembly
System.Private.CoreLib (25)
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\Reflection\RuntimeCustomAttributeData.cs (3)
122
internal static IList<CustomAttributeData> GetCustomAttributesInternal(
RuntimeAssembly
target)
1062
internal static bool IsDefined(
RuntimeAssembly
assembly, RuntimeType caType)
1266
internal static object[] GetCustomAttributes(
RuntimeAssembly
assembly, RuntimeType caType)
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)
883
private
RuntimeAssembly
? ResolveSatelliteAssembly(AssemblyName assemblyName)
895
RuntimeAssembly
parentAssembly = (
RuntimeAssembly
)LoadFromAssemblyName(new AssemblyName(parentAssemblyName));
936
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)
32
static partial void GetNativeFormatRuntimeAssembly(AssemblyBindResult bindResult, ref
RuntimeAssembly
? runtimeAssembly)
44
internal static
RuntimeAssembly
GetRuntimeAssembly(MetadataReader reader, ScopeDefinitionHandle scope)
49
private static readonly Dispenser<RuntimeAssemblyKey,
RuntimeAssembly
> s_scopeToAssemblyDispenser =
50
DispenserFactory.CreateDispenserV<RuntimeAssemblyKey,
RuntimeAssembly
>(
54
return (
RuntimeAssembly
)new NativeFormat.NativeFormatRuntimeAssembly(qScopeDefinition.Reader, qScopeDefinition.Handle);