Utilme.Result
26.9.14
dotnet add package Utilme.Result --version 26.9.14
NuGet\Install-Package Utilme.Result -Version 26.9.14
<PackageReference Include="Utilme.Result" Version="26.9.14" />
<PackageVersion Include="Utilme.Result" Version="26.9.14" />
<PackageReference Include="Utilme.Result" />
paket add Utilme.Result --version 26.9.14
#r "nuget: Utilme.Result, 26.9.14"
#:package Utilme.Result@26.9.14
#addin nuget:?package=Utilme.Result&version=26.9.14
#tool nuget:?package=Utilme.Result&version=26.9.14
Utilme.Result
A generic Result library. On success it returns a result object; on failure, a status and an error message.
dotnet add package Utilme.Result
Requires .NET 10. No dependencies.
Documentation
📖 All documentation lives in the wiki.
| Page | What's in it |
|---|---|
| Getting Started | Producing, consuming and composing results |
| API Reference | Every public member, and the ResultStatus contract |
| Result vs. ErrorOr | Honest comparison against the mainstream alternatives — read this before adopting |
| Design Notes | Why it looks like this; invariants to preserve |
| Refactor Log | Upgrade guide and version history |
Licence
MIT.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Utilme.Result:
| Package | Downloads |
|---|---|
|
WebRTCme.Middleware
Services layer between Blazor or .NET MAUI applications and the WebRTCme library. |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Utilme.Result:
| Repository | Stars |
|---|---|
|
melihercan/WebRTCme
A cross-platform framework that enables WebRTC support in .NET MAUI (mobile and desktop) and Blazor applications through a single, unified .NET/C# API.
|
Retargeted to .NET 10 (netstandard2.0/2.1 and net5.0/net6.0 are no longer supported).
Added Fail(status, message) so a specific status can carry a caller-supplied message.
Added the non-generic Result factory with type inference, Unit for void results, IsError, TryGetValue, GetValueOrDefault and ToString.
Added composition operators (Match, Map, Then, Tap, Else and async variants) in the Utilme.Functional namespace.
The per-status members NotFound, Timeout, Cancelled, NotSupported(), InvalidData(), NetworkUp() and NetworkDown() are hidden from IntelliSense but remain fully supported.