ManagedCode.Communication 8.0.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package ManagedCode.Communication --version 8.0.0
NuGet\Install-Package ManagedCode.Communication -Version 8.0.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="ManagedCode.Communication" Version="8.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ManagedCode.Communication --version 8.0.0
#r "nuget: ManagedCode.Communication, 8.0.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 ManagedCode.Communication as a Cake Addin
#addin nuget:?package=ManagedCode.Communication&version=8.0.0

// Install ManagedCode.Communication as a Cake Tool
#tool nuget:?package=ManagedCode.Communication&version=8.0.0

Communication

.NET Coverage Status nuget CodeQL NuGet Package

The Communication library is a convenient wrapper for handling the results of functions that do not throw exceptions. Instead of throwing exceptions, these functions return an object that contains the result of the operation. This makes it easy to handle and process the results of these operations in a consistent, reliable way.

Motivation

Many functions in software development can fail and throw exceptions when something goes wrong. This can make it difficult to handle errors and to read and understand code that uses these functions.

Exceptions are a powerful tool for handling error conditions in your code, but they can also be difficult to manage and can make your code harder to read and understand. Instead of throwing exceptions, the Communication library allows you to return a Result object that contains the result of an operation. This makes it easy to handle and process the results of these operations in a consistent, reliable way.

Features

  • Wraps the result of a function in an object, eliminating the need to handle exceptions.
  • Makes it easy to check whether the function was successful or not.
  • Provides access to the function's output via simple property accessors.

Getting Started

To use the Communication library in your project, you will need to add a reference to the Communication assembly. You can do this by downloading the library from GitHub and adding it to your project, or by installing the Communication NuGet package.

Once you have added a reference to the Communication assembly, you can start using the library in your code. Here is a simple example of how to use the Communication library to handle the result of an operation:

var succeed = Result.Succeed();
if(succeed.IsSuccess)
{
    // do some
}

var fail = Result.Fail();
if(fail.IsFailed)
{
    // do some
}

Generic Result

var succeed = Result<MyObject>.Succeed(new MyObject());
if(succeed.IsSuccess)
{
    succeed.Value // <-- this is the result
    // do some
}

var fail = Result<MyObject>.Fail("Oops!");
if(fail.IsFailed)
{
    // do some
}

Collection Result:

var collection = CollectionResult<int>.Succeed(Enumerable.Repeat(4, 100), 5, 100, 15000);

From:

var succeed = await Result<MyObject>.From(() => GetMyResult());
if(succeed.IsSuccess)
{
    succeed.Value // <-- this is the result
    // do some
}

Global handlers

Also we have global handlers for WebApi and SignalR

builder.Services.AddCommunication(option =>
{
    option.ShowErrorDetails = true;
});
        

SignalR global hub filter

builder.Services.AddSignalR(options => options.AddCommunicationHubFilter());

WebApi middleware

app.UseCommunication();

Orleans

silo:

siloBuilder.UseOrleansCommunication();

client:

clientBuilder.UseOrleansCommunication();

Conclusion

In summary, our library provides a convenient and easy-to-use solution for handling the result of a function that may throw exceptions. It eliminates the need to handle exceptions and makes it easy to check whether the function was successful and to access its output. We hope you find it useful in your own projects!

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 is compatible.  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 is compatible.  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.

NuGet packages (12)

Showing the top 5 NuGet packages that depend on ManagedCode.Communication:

Package Downloads
ManagedCode.Storage.Core The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Base interfaces for ManagedCode.StorageS

ManagedCode.Storage.Azure The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Storage for Azure

ManagedCode.Communication.Orleans The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Communication for .NET

ManagedCode.Storage.Aws The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Storage for AWS

ManagedCode.Storage.FileSystem The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Storage for FileSystem

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.0 790 11/29/2023
2.0.26 4,902 7/12/2023
2.0.25 1,219 6/6/2023
2.0.24 23,575 5/22/2023
2.0.23 3,127 5/21/2023
2.0.22 191 5/17/2023
2.0.21 197 5/17/2023
2.0.20 160 5/17/2023
2.0.19 5,375 3/15/2023
2.0.18 312 3/14/2023
2.0.17 270 3/12/2023
2.0.16 388 2/21/2023
2.0.15 706 2/17/2023
2.0.14 764 2/7/2023
2.0.13 6,037 12/19/2022
2.0.12 349 12/19/2022
2.0.11 384 12/8/2022
2.0.10 447 12/3/2022
2.0.9 309 11/24/2022
2.0.8 320 11/24/2022
2.0.7 339 11/24/2022
2.0.5 329 11/24/2022
2.0.3 324 11/24/2022
2.0.2 332 11/24/2022
2.0.1 340 11/24/2022
2.0.0 331 11/22/2022
1.0.3 2,519 11/1/2022
1.0.2 2,180 10/27/2022
1.0.1 387 10/26/2022
1.0.0 7,721 10/17/2022
0.1.2 12,897 8/11/2022
0.1.1 404 8/11/2022
0.1.0 397 8/11/2022
0.0.8 8,330 7/27/2022
0.0.7 413 7/27/2022
0.0.6 6,926 7/19/2022
0.0.5 426 7/19/2022
0.0.4 393 7/19/2022
0.0.3 2,129 7/16/2022
0.0.2 421 7/15/2022
0.0.1 411 7/15/2022