4 references to PlatformNotSupported_ReflectionOnly
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Reflection\Assembly.cs (3)
423
public static Assembly ReflectionOnlyLoad(byte[] rawAssembly) { throw new PlatformNotSupportedException(SR.
PlatformNotSupported_ReflectionOnly
); }
426
public static Assembly ReflectionOnlyLoad(string assemblyString) { throw new PlatformNotSupportedException(SR.
PlatformNotSupported_ReflectionOnly
); }
429
public static Assembly ReflectionOnlyLoadFrom(string assemblyFile) { throw new PlatformNotSupportedException(SR.
PlatformNotSupported_ReflectionOnly
); }
src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
724
public static Type? ReflectionOnlyGetType(string typeName, bool throwIfNotFound, bool ignoreCase) => throw new PlatformNotSupportedException(SR.
PlatformNotSupported_ReflectionOnly
);