timcassell / ProtoPromise

Robust and efficient library for management of asynchronous operations in C#/.Net.
MIT License
136 stars 13 forks source link

Remove some `UnhandledException` APIs #410

Closed timcassell closed 3 months ago

timcassell commented 3 months ago

Removed UnhandledException.{ValueType, TryGetValueAs<T>} APIs. These APIs have been useless for a while. Users can just do exception.Value is T or exception.Value.GetType() instead.