Sweaj.Patterns 1.0.6-beta

This is a prerelease version of Sweaj.Patterns.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Sweaj.Patterns --version 1.0.6-beta                
NuGet\Install-Package Sweaj.Patterns -Version 1.0.6-beta                
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="Sweaj.Patterns" Version="1.0.6-beta" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Sweaj.Patterns --version 1.0.6-beta                
#r "nuget: Sweaj.Patterns, 1.0.6-beta"                
#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 Sweaj.Patterns as a Cake Addin
#addin nuget:?package=Sweaj.Patterns&version=1.0.6-beta&prerelease

// Install Sweaj.Patterns as a Cake Tool
#tool nuget:?package=Sweaj.Patterns&version=1.0.6-beta&prerelease                

Sweaj.Patterns

A library intended for easily adapting a familiar & flexible abstraction of many patterns I use today.

.NET

Conversions

The IConverter interface represents a contract for converting an object from one type to another synchronously, while the IAsyncConverter interface represents a contract for converting an object from one type to another asynchronously, optionally supporting cancellation.

int convertedValue = converter.Convert(str);
int convertedValue = await converter.ConvertAsync(str);

Cache

Repository

Creating a generic repository that is fully flexible, all the way from its type, to its Key Type

public interface IRepository<TKey, TEntity> { }

Request / Response

The ApiResponse encapsulates the minimum ApiResponse, that

    public class ApiResponse { ... }
Product Compatible and additional computed target framework versions.
.NET 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 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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Sweaj.Patterns:

Package Downloads
TaskRipper.Core

A simple, easy-to-use lightweight, no-dependency library for executing an `Actionable<TRequest, TResult>` delegate N times. The library provides a way to balance the number of iterations requested by delegating a specific amount of iterations per thread on your machine supporting cancellation tokens per iteration.

GitHub repositories

This package is not used by any popular GitHub repositories.