NWled.DependencyInjection
1.0.0
dotnet add package NWled.DependencyInjection --version 1.0.0
NuGet\Install-Package NWled.DependencyInjection -Version 1.0.0
<PackageReference Include="NWled.DependencyInjection" Version="1.0.0" />
<PackageVersion Include="NWled.DependencyInjection" Version="1.0.0" />
<PackageReference Include="NWled.DependencyInjection" />
paket add NWled.DependencyInjection --version 1.0.0
#r "nuget: NWled.DependencyInjection, 1.0.0"
#:package NWled.DependencyInjection@1.0.0
#addin nuget:?package=NWled.DependencyInjection&version=1.0.0
#tool nuget:?package=NWled.DependencyInjection&version=1.0.0
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 | Versions 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. |
-
net8.0
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.1)
- Microsoft.Extensions.Options (>= 8.0.2)
- NWled (>= 1.0.0)
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 |