Zionet.Extensions.Command
0.1.6
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 Zionet.Extensions.Command --version 0.1.6
NuGet\Install-Package Zionet.Extensions.Command -Version 0.1.6
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="Zionet.Extensions.Command" Version="0.1.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Zionet.Extensions.Command --version 0.1.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Zionet.Extensions.Command, 0.1.6"
#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 Zionet.Extensions.Command as a Cake Addin #addin nuget:?package=Zionet.Extensions.Command&version=0.1.6 // Install Zionet.Extensions.Command as a Cake Tool #tool nuget:?package=Zionet.Extensions.Command&version=0.1.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
ZionetCommander
An elementary command dispatcher library that works with .NET Microsoft Dependency Injection
A simple example:
Add the following code to the services setup code:
builder.Services.ConfigureCommander();
builder.Services.AddSingleton<ICommandHandler, Zionet.Extension.Command.Example.Controllers.CommandHandler>();
You may register multiple ICommandHandler types.
Create a handler class:
class CommandHandler : ICommandHandler
{
private readonly ILogger<WeatherForecastController> _logger;
private static readonly string[] Summaries = new[]
{
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
};
public CommandHandler(ILogger<WeatherForecastController> logger)
{
_logger = logger;
}
[Command("UpdateForecast")]
private void OnUpdateForecast(string message, CommandWeatherResult weatherResult)
{
weatherResult.Result = Enumerable.Range(1, 5).Select(index => new WeatherForecast
{
Date = DateTime.Now.AddDays(index),
TemperatureC = Random.Shared.Next(-20, 55),
Summary = Summaries[Random.Shared.Next(Summaries.Length)]
})
.ToArray();
}
[Command("DoSomething")]
private void OnCommandB(string message)
{
_logger.LogInformation(message);
}
}
Use the handler:
public class CommandWeatherResult
{
public WeatherForecast[] Result { get; set; } = Array.Empty<WeatherForecast>();
}
[ApiController]
[Route("[controller]")]
public class WeatherForecastController : ControllerBase, ICommandHandler
{
private readonly ILogger<WeatherForecastController> _logger;
private readonly ICommandManager _commandManager;
public WeatherForecastController(ILogger<WeatherForecastController> logger, ICommandManager commandManager)
{
_logger = logger;
_commandManager = commandManager;
}
[HttpGet(Name = "GetWeatherForecast")]
public IEnumerable<WeatherForecast> Get()
{
CommandWeatherResult forecast = new CommandWeatherResult();
_commandManager.Execute("UpdateForecast", forecast);
return forecast.Result;
}
[HttpPost(Name = "DoSomething")]
public void Post()
{
_commandManager.Execute("DoSomething");
}
}
Product | Versions 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
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.