YC.Result 1.1.0

dotnet add package YC.Result --version 1.1.0                
NuGet\Install-Package YC.Result -Version 1.1.0                
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="YC.Result" Version="1.1.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add YC.Result --version 1.1.0                
#r "nuget: YC.Result, 1.1.0"                
#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.
// Install YC.Result as a Cake Addin
#addin nuget:?package=YC.Result&version=1.1.0

// Install YC.Result as a Cake Tool
#tool nuget:?package=YC.Result&version=1.1.0                

YC.Result

License: MIT NuGet

Description

YC.Result is a .NET library implementing the Result pattern. It provides a consistent way to handle success and failure in your applications, encapsulating error information and result values. This library is designed to improve code readability and error handling by using records for results and errors.

Getting Started

Dependencies

  • .NET 6 or later

Installation

You can install the YC.Result package via NuGet:

dotnet add package YC.Result

Usage

Result without Value

using YC.Result;

Result MyOperation(bool isSuccessful)
{
    if (isSuccessful)
    {
        return Result.Success(); // cached success result
        // Same for Result.Failure() for cached empty failure result
    }
    else
    {
        return Error.Create("Operation Error", "Failed to complete operation.", 500);
    }
}

var result = MyOperation(false);

result.Match(
    () => Console.WriteLine("Operation was successful."),
    error => Console.WriteLine($"Operation failed with error: {error.Detail}")
);

Result with Value

using YC.Result;
using Microsoft.AspNetCore.Http;

Result<string> GetGreeting(bool isSuccessful)
{
    if (isSuccessful)
    {
        return "Hello, World!"; // creating successful result implicitly
    }
    else
    {
        return Error.Create("Greeting Error", "Failed to generate greeting.", 500); // creating failure result implicitly
    }
}

var result = GetGreeting(false);

var httpResult = result.Match(
    value => Results.Ok(value),
    error => Results.StatusCode(error.Status)
);

Authors

License

This project is licensed under the MIT License - see the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.0 122 6/30/2024
1.0.1 105 6/28/2024