Xpandables.Net.AspNetCore
9.0.1
dotnet add package Xpandables.Net.AspNetCore --version 9.0.1
NuGet\Install-Package Xpandables.Net.AspNetCore -Version 9.0.1
<PackageReference Include="Xpandables.Net.AspNetCore" Version="9.0.1" />
paket add Xpandables.Net.AspNetCore --version 9.0.1
#r "nuget: Xpandables.Net.AspNetCore, 9.0.1"
// Install Xpandables.Net.AspNetCore as a Cake Addin #addin nuget:?package=Xpandables.Net.AspNetCore&version=9.0.1 // Install Xpandables.Net.AspNetCore as a Cake Tool #tool nuget:?package=Xpandables.Net.AspNetCore&version=9.0.1
Introduction
Provides with useful interfaces contracts in .Net 9.0 and some implementations mostly following the spirit of SOLID principles, Commands... The library is strongly-typed, which means it should be hard to make invalid requests and it also makes it easy to discover available methods and properties though IntelliSense.
Feel free to fork this project, make your own changes and create a pull request.
This project is licensed under the Apache License, Version 2.0. See the LICENSE file for details.
Getting Started
Optional
The Optional< T> is a C# implementation of an optional value that may or may not be present. This implementation is part of the Xpandables.Net library and is designed to work with .NET 9. The Optional< T> struct provides a way to represent optional values, similar to the Nullable< T> type but for reference types and value types alike.
Features
- Is a struct, immutable, a generic type, so it can hold a value of any type.
- Represents an optional value that may or may not be present.
- Provides a way to work with optional values in a functional way.
- Provides a way to create an optional value from a value or from an empty value.
- Supports JSON serialization through OptionalJsonConverterFactory.
- Implements IEnumerable< T> to allow iteration over the optional value.
Usage
Creating an Optional Value
You can create an Optional< T> value using helpers or implicit conversion.
using Xpandables.Net.Optionals;
// Creating an optional with a value
Optional<int> optionalWithValue = Optional.Some(42);
// Creating an empty optional
Optional<int> emptyOptional = Optional.Empty<int>();
Checking for Value Presence
You can check if the optional has a value using the IsEmpty or IsNotEmpty properties.
if (emptyOptional.IsEmpty)
{
Console.WriteLine("Optional is empty.");
}
if (optionalWithValue.IsNotEmpty)
{
Console.WriteLine("Optional is not empty.");
}
Accessing the Value
You can access the value of the Optional using the Value property. Note that accessing the value when it is not present will throw an InvalidOperationException.
try
{
int value = optionalWithValue.Value;
Console.WriteLine($"Value: {value}");
}
catch (InvalidOperationException ex)
{
Console.WriteLine(ex.Message);
}
Iterating over the Value
Since Optional< T> implements IEnumerable< T>, you can use it in a foreach loop.
foreach (var value in optionalWithValue)
{
Console.WriteLine($"Value: {value}");
}
foreach (var value in emptyOptional)
{
Console.WriteLine($"Value: {value}"); // This will not execute
}
Using the Map Method
The Map method allows you to act on the value inside the optional if it is present.
Optional<int> optional = 42;
Optional<int> mappedOptional = optional.Map(value => value * 2);
if (mappedOptional.IsNotEmpty)
{
Console.WriteLine($"Mapped Value: {mappedOptional.Value}");
// Output: Mapped Value: 84
}
Using the Bind Method
The Bind method allows you to transform the value inside the optional to another type and return a new optional.
Optional<string> optional = Optional.Some("Hello Word");
Optional<int> boundOptional = optional.Bind(value => value.Length);
if (boundOptional.HasValue)
{
Console.WriteLine($"Bound Value: {boundOptional.Value}");
// Output: Bound Value: 10
}
Using the Empty Method
The Empty method allows you to provide a value if the current optional is empty.
public string GetName()
{
Optional<Name> optional = function call;
return optional
.Empty("No Name");
// If the optional has a value, the function value will be returned.
// Otherwise, the Empty value will be returned.
}
JSON Serialization
The Optional< T> struct is decorated with OptionalJsonConverterFactory to support JSON serialization.
using System.Text.Json;
var optional = Optional.Some(42);
string json = JsonSerializer.Serialize(optional);
Console.WriteLine(json); // Output: {"Value":42}
var deserializedOptional = JsonSerializer.Deserialize<Optional<int>>(json);
Console.WriteLine(deserializedOptional.IsNotEmpty); // True
Console.WriteLine($"Deserialized Value: {deserializedOptional.Value}");
// Output: Deserialized Value: 42
// anonymous type
var anonymous = Optional.Some(new { Name = "Hello World" });
string anonymousJson = JsonSerializer.Serialize(anonymous);
Console.WriteLine(anonymousJson); // Output: {"Name":"Hello World"}
var deserializedAnonymous = DeserializeAnonymousType(anonymousJson, anonymous);
// or you can use an anonymous instance
// var deserializedAnonymous = DeserializeAnonymousType(
// anonymousJson,
// Optional.Some(new { Name = string.Empty }));
Console.WriteLine($"Deserialized Anonymous Value: {deserializedAnonymous.Value.Name}");
// Output: Deserialized Anonymous Value: Name: Hello World
static T? DeserializeAnonymousType<T>(
string json, T _, JsonSerializerOptions? options = default) =>
JsonSerializer.Deserialize<T>(json, options);
Chaining Methods in a Fluent Manner
You can chain the methods of Optional< T> in a fluent manner to produce the expected result.
Optional<int> optional = Optional.Some(42);
Optional<string> result = optional
.Map(value => value * 2) // Double the value
.Bind(value => Optional.Some(value.ToString())) // Convert to string
.Empty(() => "Default Value"); // Provide a default value if empty
if (result.IsNotEmpty)
{
Console.WriteLine($"Result: {result.Value}"); // Output: Result: 84
}
else
{
Console.WriteLine("Result is empty.");
}
IExecutionResult and ExecutionResults
Overview
The IExecutionResult
and ExecutionResults
classes are part of the Xpandables.Net.Operations
namespace. They provide a structured way to handle the results of operations, encapsulating both success and failure scenarios with detailed information.
IExecutionResult
The IExecutionResult
interface represents the result of an execution. It includes properties for status code, title, detail, location, result, errors, headers, and extensions. It also provides methods to check if the execution was successful and to retrieve any associated exceptions.
ExecutionResults
The ExecutionResults
class provides static methods to create instances of IExecutionResult
for both success and failure scenarios. It includes methods to set various HTTP status codes and to include additional details like titles, details, locations, and errors.
Usage
Creating a Success Execution Result
To create a success execution result, you can use the Success
method from the ExecutionResults
class. You can specify the status code, result, and other details.
using System.Net;
using Xpandables.Net.Operations;
public class SampleUsage
{
public IExecutionResult CreateSuccessResult()
{
return ExecutionResults.Success(HttpStatusCode.OK)
.WithTitle("Execution Successful")
.WithDetail("The execution completed successfully.")
.WithLocation(new Uri("http://example.com"))
.Build();
}
public IExecutionResult<string> CreateSuccessResultWithData()
{
return ExecutionResults.Success("Success Data", HttpStatusCode.OK)
.WithTitle("Execution Successful")
.WithDetail("The execution completed successfully with data.")
.WithLocation(new Uri("http://example.com"))
.Build();
}
}
Creating a Failure Execution Result
To create a failure execution result, you can use the Failure
method from the ExecutionResults
class. You can specify the status code, errors, and other details.
using System.Net;
using Xpandables.Net.Operations;
public class SampleUsage
{
public IExecutionResult CreateFailureResult()
{
return ExecutionResults.Failure(HttpStatusCode.BadRequest)
.WithTitle("Execution Failed")
.WithDetail("The execution failed due to bad request.")
.WithError("ErrorKey", "ErrorMessage")
.Build();
}
public IExecutionResult<string> CreateFailureResultWithData()
{
return ExecutionResults.Failure<string>(HttpStatusCode.BadRequest)
.WithTitle("Execution Failed")
.WithDetail("The execution failed due to bad request with data.")
.WithError("ErrorKey", "ErrorMessage")
.Build();
}
}
Using Predefined Methods
The ExecutionResults
class also provides predefined methods for common HTTP status codes like Ok
, Created
, NoContent
, NotFound
, BadRequest
, Conflict
, Unauthorized
, InternalServerError
, and ServiceUnavailable
.
using Xpandables.Net.Operations;
public class SampleUsage
{
public IExecutionResult CreateOkResult()
{
return ExecutionResults.Ok()
.WithTitle("Execution Successful")
.WithDetail("The execution completed successfully.")
.Build();
}
public IExecutionResult<string> CreateNotFoundResult()
{
return ExecutionResults.NotFound<string>()
.WithTitle("Resource Not Found")
.WithDetail("The requested resource was not found.")
.Build();
}
}
The IExecutionResult
and ExecutionResults
classes provide a flexible and structured way to handle execution results in your application. By using these classes, you can ensure that your operations return consistent and detailed results, making it easier to handle both success and failure scenarios.
IHttpClientDispatcher and Related Classes
Overview
The IHttpClientDispatcher
interface and related classes in the Xpandables.Net.Http
namespace provide a structured way to handle HTTP client requests and responses. These classes and interfaces allow you to configure, send, and process HTTP requests with detailed options and builders.
IHttpClientDispatcher
The IHttpClientDispatcher
interface provides methods to handle HTTP client requests using a typed client HTTP client. It supports sending requests that do not return a response, requests that return a response of a specific type, and requests that return a stream that can be async-enumerated.
IHttpClientAttributeBuilder
The IHttpClientAttributeBuilder
interface defines a builder for creating HttpClientAttribute
. This interface takes priority over the HttpClientAttribute
.
HttpClientAttribute
The HttpClientAttribute
class is an attribute used to configure options for HTTP client requests. It should decorate implementations of IHttpClientRequest
, IHttpClientAsyncRequest<TResponse>
, or IHttpClientRequest<TResponse>
to be used with IHttpClientDispatcher
.
Usage
Creating and Sending a Simple Request
To create and send a simple request using IHttpClientDispatcher
, you can define a request class and decorate it with HttpClientAttribute
.
using System.Net;
using Xpandables.Net.Http;
[HttpClientRequestOptions(Path = "/api/data",
Method = Method.GET)]
public class GetDataRequest : IHttpClientRequest { }
public class SampleUsage
{
private readonly IHttpClientDispatcher _dispatcher;
public SampleUsage(IHttpClientDispatcher dispatcher)
{
_dispatcher = dispatcher;
}
public async Task SendRequestAsync()
{
var request = new GetDataRequest();
var response = await _dispatcher.SendAsync(request);
if (response.IsValid)
{
Console.WriteLine("Request was successful.");
}
else
{
Console.WriteLine("Request failed.");
}
}
}
Creating and Sending a Request with a Response
To create and send a request that returns a response of a specific type, you can define a request class and a response class.
using System.Net;
using Xpandables.Net.Http;
[HttpClientRequestOptions(Path = "/api/data",
Method = Method.GET)]
public class GetDataRequest : IHttpClientRequest<string> { }
public class SampleUsage
{
private readonly IHttpClientDispatcher _dispatcher;
public SampleUsage(IHttpClientDispatcher dispatcher)
{
_dispatcher = dispatcher;
}
public async Task SendRequestWithResponseAsync()
{
var request = new GetDataRequest();
var response = await _dispatcher.SendAsync(request);
if (response.IsValid)
{
Console.WriteLine($"Response data: {response.Result}");
}
else
{
Console.WriteLine("Request failed.");
}
}
}
Using a Custom Request Options Builder
To use a custom request options builder, implement the IHttpClientAttributeBuilder
interface in your request class.
using System.Net;
using Xpandables.Net.Http;
public class CustomRequestAttributeBuilder : IHttpClientAttributeBuilder
{
public HttpClientAttribute Build(HttpClientOptions options)
{
return new HttpClientAttribute
{
Path = "/api/custom",
Method = Method.POST,
ContentType = "application/json"
};
}
}
public class CustomRequest : CustomRequestAttributeBuilder;
public class SampleUsage
{
private readonly IHttpClientDispatcher _dispatcher;
public SampleUsage(IHttpClientDispatcher dispatcher)
{
_dispatcher = dispatcher;
}
public async Task SendCustomRequestAsync()
{
var request = new CustomRequest();
var response = await _dispatcher.SendAsync(request);
if (response.IsValid)
{
Console.WriteLine("Custom request was successful.");
}
else
{
Console.WriteLine("Custom request failed.");
}
}
}
The IHttpClientDispatcher
interface and related classes provide a flexible and structured way to handle HTTP client requests and responses in your application. By using these classes, you can ensure that your HTTP operations are consistent and detailed, making it easier to handle various HTTP scenarios.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. 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. |
-
net9.0
- Xpandables.Net (>= 9.0.1)
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 |
---|---|---|
9.0.1 | 75 | 1/19/2025 |
9.0.0-rc.1 | 57 | 10/26/2024 |
8.1.2 | 132 | 9/12/2024 |
8.0.8 | 124 | 6/21/2024 |
8.0.6 | 107 | 5/25/2024 |
8.0.5 | 116 | 5/18/2024 |
8.0.1 | 308 | 2/11/2024 |
8.0.0 | 447 | 12/3/2023 |
8.0.0-rc.2.1.1 | 98 | 11/12/2023 |
8.0.0-rc.2.1 | 83 | 11/6/2023 |
8.0.0-rc.2.0 | 77 | 11/5/2023 |
7.3.3 | 500 | 5/9/2023 |
7.1.4 | 567 | 2/26/2023 |
7.1.3 | 611 | 2/19/2023 |
7.0.0 | 671 | 11/9/2022 |
7.0.0-rc2.0.1 | 106 | 10/12/2022 |
7.0.0-rc1.0.0 | 150 | 9/26/2022 |
6.1.1 | 772 | 8/6/2022 |
6.0.9 | 762 | 7/9/2022 |
6.0.8 | 789 | 6/27/2022 |
6.0.4 | 806 | 3/15/2022 |
6.0.3 | 732 | 2/22/2022 |
6.0.2 | 576 | 1/4/2022 |
6.0.1 | 566 | 12/4/2021 |
6.0.0 | 626 | 11/8/2021 |
6.0.0-rc.4.3 | 156 | 11/3/2021 |
6.0.0-rc.3.1 | 169 | 10/15/2021 |
6.0.0-rc.3 | 156 | 10/14/2021 |
6.0.0-rc.2 | 161 | 9/21/2021 |
6.0.0-preview.5 | 173 | 8/26/2021 |
5.6.1 | 676 | 6/30/2021 |
5.6.0 | 684 | 6/9/2021 |
5.5.1 | 641 | 5/26/2021 |
5.4.4 | 641 | 4/12/2021 |
IOperationResult