NWled.DependencyInjection 1.0.0

dotnet add package NWled.DependencyInjection --version 1.0.0
                    
NuGet\Install-Package NWled.DependencyInjection -Version 1.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="NWled.DependencyInjection" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NWled.DependencyInjection" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="NWled.DependencyInjection" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add NWled.DependencyInjection --version 1.0.0
                    
#r "nuget: NWled.DependencyInjection, 1.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.
#:package NWled.DependencyInjection@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=NWled.DependencyInjection&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=NWled.DependencyInjection&version=1.0.0
                    
Install as a Cake Tool

Dependency Injection for WLedClient

This section provides details on how to integrate the WLedClient with the dependency injection (DI) system in your .NET application. This allows for easy management of the client and its configuration.

Setting Up Dependency Injection

To register the WLedClient in your DI container, you can use the provided extension methods in the WLedClientServiceExtensions class. This enables you to configure the client with various settings, including the URL and the HTTP message handler.

Adding WLedClient to the DI Container

You can add the WLedClient to your service collection using one of the following methods:

Configure with Action
services.AddWLed(options =>
{
    options.Url = "http://your-wled-device/";
});
Configure with URL Only
services.AddWLed("http://your-wled-device/");
Configure with URL and Custom HttpMessageHandler
services.AddWLed("http://your-wled-device/", new HttpClientHandler());
Configure with WledSettings Object
var settings = new WledSettings
{
    Url = "http://your-wled-device/",
    HttpMessageHandler = new HttpClientHandler()
};

services.AddWLed(settings);

Accessing WLedClient in Your Application

Once the WLedClient has been registered in the DI container, you can easily inject it into your classes using constructor injection:

public class MyService
{
    private readonly WLedClient _wledClient;

    public MyService(WLedClient wledClient)
    {
        _wledClient = wledClient;
    }

    public async Task DoSomethingWithWled()
    {
        var state = await _wledClient.GetStateAsync();
        // Do something with the state
    }
}

Summary

By following these steps, you can efficiently integrate the WLedClient into your .NET application using dependency injection. This approach promotes better organization and testing practices by managing dependencies through the DI container.

For more information on dependency injection in .NET, refer to the official documentation.

Product Compatible and additional computed target framework versions.
.NET 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.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
1.0.0 183 9/20/2024