Utilme.Result 26.9.14

dotnet add package Utilme.Result --version 26.9.14
                    
NuGet\Install-Package Utilme.Result -Version 26.9.14
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Utilme.Result" Version="26.9.14" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Utilme.Result" Version="26.9.14" />
                    
Directory.Packages.props
<PackageReference Include="Utilme.Result" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Utilme.Result --version 26.9.14
                    
#r "nuget: Utilme.Result, 26.9.14"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Utilme.Result@26.9.14
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Utilme.Result&version=26.9.14
                    
Install as a Cake Addin
#tool nuget:?package=Utilme.Result&version=26.9.14
                    
Install as a Cake Tool

Utilme.Result

NuGet

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • 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.
Version Downloads Last Updated
26.9.14 213 9/14/2026
26.9.7 96 9/7/2026
1.0.1 7,380 3/3/2022
1.0.0 649 2/26/2022

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.