We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reflection-only loads are not supported in CoreCLR. (FEATURE_REFLECTION_ONLY_LOAD)
FEATURE_REFLECTION_ONLY_LOAD
Assembly.ReflectionOnlyLoad are doing full loads instead of reflection-only loads. They should throw PNSE instead.
Assembly.ReflectionOnlyLoad
The matching corefx tests should be updated: https://github.com/dotnet/corefx/blob/f9efc9625f795673c5c17d0791d8c79710a267b9/src/System.Runtime/tests/System/Reflection/AssemblyTests.cs#L161
The text was updated successfully, but these errors were encountered:
Note that other ReflectionOnly APIs like AppDomain.ReflectionOnlyGetAssemblies() are doing the right thing already.
AppDomain.ReflectionOnlyGetAssemblies()
Sorry, something went wrong.
ReflectionOnlyGetType also - we do not seem to have any tests for it.
Fixed
rahku
No branches or pull requests
Reflection-only loads are not supported in CoreCLR. (
FEATURE_REFLECTION_ONLY_LOAD
)Assembly.ReflectionOnlyLoad
are doing full loads instead of reflection-only loads. They should throw PNSE instead.The matching corefx tests should be updated: https://github.com/dotnet/corefx/blob/f9efc9625f795673c5c17d0791d8c79710a267b9/src/System.Runtime/tests/System/Reflection/AssemblyTests.cs#L161
The text was updated successfully, but these errors were encountered: