Releases: YoussefSell/Result.Net
Releases · YoussefSell/Result.Net
v1.5.0
For more details click here to get to our CHANGELOG.
Changes:
- added a
Cast<>()
extension method that allows you to cast aResult
instance into aResult{TData}
instance. - Removed
ListResult<>
no need for this type, to simplify the usage theResult<data[]>
can be used instead. - Removed
Clone()
methods, the newCast<>()
method should be used instead. - All properties on the
Result
instance will not be set and they will have their default value (null, or empty string). - Fixed JSON Deserialization issue by removing all constructors from the
Result
class and only setting one default constructor.
v1.4.0
v1.3.0
For more details click here to get to our CHANGELOG.
Changes:
- added a
Match()
extension method on the Result type to run logic based on the result status. - added
Exception
property to ResultError. - added new extension methods on the Result type to attach errors.
- removed
Type
property from ResultError. - updated some comments.