Vasconcellos.Common.Results
1.1.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Vasconcellos.Common.Results --version 1.1.0
NuGet\Install-Package Vasconcellos.Common.Results -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="Vasconcellos.Common.Results" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Vasconcellos.Common.Results --version 1.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Vasconcellos.Common.Results, 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 Vasconcellos.Common.Results as a Cake Addin #addin nuget:?package=Vasconcellos.Common.Results&version=1.1.0 // Install Vasconcellos.Common.Results as a Cake Tool #tool nuget:?package=Vasconcellos.Common.Results&version=1.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Description
Vasconcellos.Common.Result is a library to facilitate the return of function results with error messages handling.
License: MIT License
Copyright (c) 2023 Pedro Vasconcellos
Author: Pedro Henrique Vasconcellos
Sponsor: https://vasconcellos.solutions
Example of using the Vasconcellos.Common.Result [Service].
public async Task<Result<Guid>> ExecuteAsync(EmailCommand command)
{
if (command == null)
return Result<Guid>.Fail("COMMAND_IS_NULL","Request is null", ErrorType.BadDomain);
try
{
var entity = new EmailEntity(command);
if (entity.IsFailure)
return Result<Guid>.Fail(entity.ErrorCode, entity.ErrorMessage, ErrorType.BadDomain);
var result = await _triggerService.Executesync(entity);
if (result.IsSuccess)
return Result<Guid>.Success(result.Value);
return Result<Guid>.Fail(result.Errors);
}
catch (Exception ex)
{
_logger.LogError($"Error: {ex.Message}", ex);
return Result<Guid>.Fail("ERROR_EXCEPTION", ex.Message, ErrorType.Unexpected);
}
}
Example of using the Vasconcellos.Common.Result [Controller].
[HttpPost(Name = "post-example")]
[ProducesResponseType(typeof(Guid), (int)HttpStatusCode.Create)]
[ProducesResponseType(typeof(IEnumerable<Error>), (int)HttpStatusCode.BadRequest)]
[ProducesResponseType(typeof(IEnumerable<Error>), (int)HttpStatusCode.NotFound)]
[ProducesResponseType(typeof(IEnumerable<Error>), (int)HttpStatusCode.InternalServerError)]
public async Task<IActionResult> PostExample([FromBody] EmailCommand command)
{
var result = await _service.ExecuteAsync(command);
if (result.IsSuccess)
return this.StatusCode((int)HttpStatusCode.Create, result.Value);
return this.StatusCode((int)result.GetError().Type, result.Errors);
}
Sponsor
Vasconcellos IT Solutions
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.1
- 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.
Add Result