-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
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
[wasm] Mark System.Data.Common APIs as unsupported on Browser #41263
[wasm] Mark System.Data.Common APIs as unsupported on Browser #41263
Conversation
Tagging subscribers to this area: @safern, @ViktorHofer |
@@ -231,6 +232,7 @@ protected virtual void ClearBatch() | |||
throw ADP.NotSupported(); | |||
} | |||
|
|||
[UnsupportedOSPlatform("browser")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What makes this unsupported on browser?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, it looks like a false-positive. Thanks!
@@ -227,6 +228,7 @@ protected DataSet(SerializationInfo info, StreamingContext context) : this(info, | |||
{ | |||
} | |||
|
|||
[UnsupportedOSPlatform("browser")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is same as #41085. It does not make sense to be marking serialization infrastructure as unsupported on browser.
Tagging subscribers to this area: @roji, @ajcvickers |
Closing this PR as |
Contributes to #41087