runtime: System.Exception is not Serializable on UWP
We should mark the System.Exception on UWP with [Serializable]. This blocks serialization of exception types on UWP. And Exception.GetObjectData is throwing NotImplementedException.
About this issue
- Original URL
- State: closed
- Created 7 years ago
- Comments: 15 (14 by maintainers)
For reference, the correct file is https://github.com/dotnet/corert/blob/master/src/System.Private.CoreLib/src/System/Exception.cs
Exception is marked Serializable, but GetObjectData does still throw NotImplementedException.