1 type derived from RuntimeAssembly
System.Private.CoreLib (1)
System\Reflection\Runtime\Assemblies\RuntimeAssemblyInfo.cs (1)
23internal 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)
236if (assembly is not RuntimeAssembly)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\RuntimeCustomAttributeData.cs (3)
122internal static IList<CustomAttributeData> GetCustomAttributesInternal(RuntimeAssembly target) 1062internal static bool IsDefined(RuntimeAssembly assembly, RuntimeType caType) 1266internal static object[] GetCustomAttributes(RuntimeAssembly assembly, RuntimeType caType)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Resources\ManifestBasedResourceGroveler.cs (1)
272return RuntimeAssembly.InternalGetSatelliteAssembly(mainAssembly, culture, version, throwOnFileNotFound: false);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Resources\ResourceManager.cs (2)
191if (assembly is not RuntimeAssembly) 207if (assembly is not RuntimeAssembly)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NativeLibrary.cs (3)
89if (assembly is not RuntimeAssembly) 124if (assembly is not RuntimeAssembly) 206if (assembly is not RuntimeAssembly)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Loader\AssemblyLoadContext.cs (5)
883private RuntimeAssembly? ResolveSatelliteAssembly(AssemblyName assemblyName) 895RuntimeAssembly parentAssembly = (RuntimeAssembly)LoadFromAssemblyName(new AssemblyName(parentAssemblyName)); 936RuntimeAssembly? asm = exists ? (RuntimeAssembly?)parentALC.LoadFromAssemblyPath(assemblyPath) : null;
System\Reflection\Runtime\General\Dispensers.cs (5)
33internal static RuntimeAssembly GetRuntimeAssembly(RuntimeAssemblyName assemblyRefName) 81private static RuntimeAssembly GetRuntimeAssembly(AssemblyBindResult bindResult, string assemblyPath = null) 83RuntimeAssembly? result = null; 97static partial void GetNativeFormatRuntimeAssembly(AssemblyBindResult bindResult, ref RuntimeAssembly? runtimeAssembly); 98static partial void GetEcmaRuntimeAssembly(AssemblyBindResult bindResult, string assemblyPath, ref RuntimeAssembly? runtimeAssembly);
System\Reflection\Runtime\General\Dispensers.NativeFormat.cs (5)
32static partial void GetNativeFormatRuntimeAssembly(AssemblyBindResult bindResult, ref RuntimeAssembly? runtimeAssembly) 44internal static RuntimeAssembly GetRuntimeAssembly(MetadataReader reader, ScopeDefinitionHandle scope) 49private static readonly Dispenser<RuntimeAssemblyKey, RuntimeAssembly> s_scopeToAssemblyDispenser = 50DispenserFactory.CreateDispenserV<RuntimeAssemblyKey, RuntimeAssembly>( 54return (RuntimeAssembly)new NativeFormat.NativeFormatRuntimeAssembly(qScopeDefinition.Reader, qScopeDefinition.Handle);