Ether.Outcomes
1.3.1-alpha
See the version list below for details.
Requires NuGet 2.8.1 or higher.
dotnet add package Ether.Outcomes --version 1.3.1-alpha
NuGet\Install-Package Ether.Outcomes -Version 1.3.1-alpha
<PackageReference Include="Ether.Outcomes" Version="1.3.1-alpha" />
paket add Ether.Outcomes --version 1.3.1-alpha
#r "nuget: Ether.Outcomes, 1.3.1-alpha"
// Install Ether.Outcomes as a Cake Addin #addin nuget:?package=Ether.Outcomes&version=1.3.1-alpha&prerelease // Install Ether.Outcomes as a Cake Tool #tool nuget:?package=Ether.Outcomes&version=1.3.1-alpha&prerelease
Outcome.NET lets you return either a result, or a list of messages (usually in the event of failure). It is a fluent, clean, easy-to-learn implementation of the Notification pattern, with a few extras.
Ever write a method that could fail intermittently, like a call to a particularly flaky web service?
Typically, you handle this one of three ways: by throwing/catching exceptions, by tacking boilerplate code onto your result with metadata to indicate success or failure, or by wrapping the result in another object.
All of these work, but they're plumbing, and that's wasteful. Outcome.NET takes the third approach and extends it, providing an expressive, fluent wrapper that just works.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
This package has no dependencies.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.2-alpha | 68 | 5/7/2015 |
2.0.1-alpha | 33 | 4/29/2015 |
2.0.0-alpha | 33 | 3/30/2015 |
1.3.1 | 99 | 3/27/2015 |
1.3.1-alpha | 34 | 3/26/2015 |
1.3.0-alpha | 36 | 3/23/2015 |
1.2.0 | 145 | 2/11/2015 |
1.1.0 | 452 | 11/14/2014 |
1.0.5 | 363 | 10/30/2014 |
1.0.4 | 114 | 8/7/2014 |
1.0.3 | 68 | 6/21/2014 |
1.0.2 | 56 | 6/17/2014 |
1.0.1 | 57 | 6/17/2014 |
1.0.0 | 57 | 6/17/2014 |
- Switched from .Net 4.5 to .Net 4 for additional compatibility.
- Added resharper attributes around string format methods.
- Added deprecation tags to a few methods that are going to be removed in v2.
- Added FormatMultiLine and marked ToString(string delimiter) as deprecated, since that was an unconventional use of a ToString() override.