Smdn.Net.EchonetLite.RouteB.BP35XX 2.0.0-preview5

Prefix Reserved
This is a prerelease version of Smdn.Net.EchonetLite.RouteB.BP35XX.
dotnet add package Smdn.Net.EchonetLite.RouteB.BP35XX --version 2.0.0-preview5
                    
NuGet\Install-Package Smdn.Net.EchonetLite.RouteB.BP35XX -Version 2.0.0-preview5
                    
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="Smdn.Net.EchonetLite.RouteB.BP35XX" Version="2.0.0-preview5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Smdn.Net.EchonetLite.RouteB.BP35XX" Version="2.0.0-preview5" />
                    
Directory.Packages.props
<PackageReference Include="Smdn.Net.EchonetLite.RouteB.BP35XX" />
                    
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 Smdn.Net.EchonetLite.RouteB.BP35XX --version 2.0.0-preview5
                    
#r "nuget: Smdn.Net.EchonetLite.RouteB.BP35XX, 2.0.0-preview5"
                    
#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 Smdn.Net.EchonetLite.RouteB.BP35XX@2.0.0-preview5
                    
#: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=Smdn.Net.EchonetLite.RouteB.BP35XX&version=2.0.0-preview5&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Smdn.Net.EchonetLite.RouteB.BP35XX&version=2.0.0-preview5&prerelease
                    
Install as a Cake Tool

Smdn.Net.EchonetLite.RouteB.BP35XX 2.0.0-preview5

BP35A1など、Skyley NetworksのSKSTACK IPを搭載するROHM Wi-SUNモジュールを使用して、スマート電力量メータとの情報伝達手段である「Bルート」を介したECHONET Lite規格の通信を扱うためのAPIを提供します。 ECHONET Lite規格における下位通信層に相当する実装を作成するファクトリクラスBP35A1RouteBHandlerFactoryをはじめとするAPIを提供します。

Contributing

This project welcomes contributions, feedbacks and suggestions. You can contribute to this project by submitting Issues or Pull Requests on the GitHub repository.

API List

List of APIs exposed by assembly Smdn.Net.EchonetLite.RouteB.BP35XX-2.0.0-preview5 (net8.0)

// Smdn.Net.EchonetLite.RouteB.BP35XX.dll (Smdn.Net.EchonetLite.RouteB.BP35XX-2.0.0-preview5)
//   Name: Smdn.Net.EchonetLite.RouteB.BP35XX
//   AssemblyVersion: 2.0.0.0
//   InformationalVersion: 2.0.0-preview5+00af253682c17171aae1d68f04e3b98b34db2d4f
//   TargetFramework: .NETCoreApp,Version=v8.0
//   Configuration: Release
//   Referenced assemblies:
//     Microsoft.Extensions.DependencyInjection.Abstractions, Version=8.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60
//     Microsoft.Extensions.Logging.Abstractions, Version=8.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60
//     Microsoft.Extensions.Options, Version=8.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60
//     Polly.Core, Version=8.0.0.0, Culture=neutral, PublicKeyToken=c8a3ffc3f8f825cc
//     Polly.Extensions, Version=8.0.0.0, Culture=neutral, PublicKeyToken=c8a3ffc3f8f825cc
//     Smdn.Devices.BP35XX, Version=2.2.0.0, Culture=neutral
//     Smdn.Net.EchonetLite.Primitives, Version=2.0.0.0, Culture=neutral
//     Smdn.Net.EchonetLite.RouteB.Primitives, Version=2.1.0.0, Culture=neutral
//     Smdn.Net.EchonetLite.RouteB.SkStackIP, Version=2.0.0.0, Culture=neutral
//     Smdn.Net.SkStackIP, Version=1.4.0.0, Culture=neutral
//     System.ComponentModel, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
//     System.Linq, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
//     System.Net.NetworkInformation, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
//     System.Net.Primitives, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
//     System.Runtime, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
#nullable enable annotations

using System;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.DependencyInjection;
using Polly;
using Polly.DependencyInjection;
using Polly.Retry;
using Smdn.Devices.BP35XX;
using Smdn.Net.EchonetLite.RouteB.DependencyInjection;
using Smdn.Net.EchonetLite.RouteB.Transport;
using Smdn.Net.EchonetLite.RouteB.Transport.SkStackIP;
using Smdn.Net.SkStackIP;

namespace Smdn.Net.EchonetLite.RouteB.DependencyInjection {
  public sealed class BP35A1RouteBHandlerFactoryBuilder<TServiceKey> : SkStackRouteBHandlerFactoryBuilder<TServiceKey> {
    protected override SkStackRouteBHandlerFactory Build(IServiceProvider serviceProvider, SkStackRouteBSessionOptions sessionOptions, Action<SkStackClient>? postConfigureClient) {}
  }

  public static class BP35A1RouteBServiceBuilderExtensions {
    public static IRouteBServiceBuilder<TServiceKey> AddBP35A1Handler<TServiceKey>(this IRouteBServiceBuilder<TServiceKey> builder, Action<BP35A1Options> configureBP35A1Options, Action<SkStackRouteBSessionOptions> configureSessionOptions, Action<BP35A1RouteBHandlerFactoryBuilder<TServiceKey>> configureRouteBHandlerFactory) {}
    public static IRouteBServiceBuilder<TServiceKey> AddBP35A1PanaAuthenticationWorkaround<TServiceKey>(this IRouteBServiceBuilder<TServiceKey> builder, Action<ResiliencePipelineBuilder, AddResiliencePipelineContext<SkStackRouteBHandler.ResiliencePipelineKeyPair<TServiceKey>>, Func<ResilienceContext, ValueTask>> configureWorkaroundPipeline) {}
    public static IRouteBServiceBuilder<TServiceKey> AddBP35A1PanaAuthenticationWorkaround<TServiceKey>(this IRouteBServiceBuilder<TServiceKey> builder, RetryStrategyOptions retryOptions) {}
  }
}

namespace Smdn.Net.EchonetLite.RouteB.Transport.BP35XX {
  public sealed class BP35A1RouteBHandler : SkStackUdpRouteBHandler {
    public BP35A1RouteBHandler(BP35A1 client, SkStackRouteBSessionOptions sessionOptions, bool shouldDisposeClient, IServiceProvider? serviceProvider, object? routeBServiceKey) {}
  }

  public sealed class BP35A1RouteBHandlerFactory : SkStackRouteBHandlerFactory {
    public BP35A1RouteBHandlerFactory(IServiceProvider serviceProvider, object? routeBServiceKey, BP35A1Options options, SkStackRouteBSessionOptions sessionOptions, Action<SkStackClient>? postConfigureClient) {}

    protected override async ValueTask<RouteBEchonetLiteHandler> CreateAsyncCore(CancellationToken cancellationToken) {}
  }

  public static class BP35A1RouteBHandlerServiceCollectionExtensions {
    public static IServiceCollection AddResiliencePipelineBP35A1PanaAuthenticationWorkaround(this IServiceCollection services, Action<ResiliencePipelineBuilder, AddResiliencePipelineContext<string>, Func<ResilienceContext, ValueTask>> configureWorkaroundPipeline) {}
    public static IServiceCollection AddResiliencePipelineBP35A1PanaAuthenticationWorkaround(this IServiceCollection services, RetryStrategyOptions retryOptions) {}
    public static IServiceCollection AddResiliencePipelineBP35A1PanaAuthenticationWorkaround<TServiceKey>(this IServiceCollection services, TServiceKey serviceKey, Action<ResiliencePipelineBuilder, AddResiliencePipelineContext<SkStackRouteBHandler.ResiliencePipelineKeyPair<TServiceKey>>, Func<ResilienceContext, ValueTask>> configureWorkaroundPipeline) {}
    public static IServiceCollection AddResiliencePipelineBP35A1PanaAuthenticationWorkaround<TServiceKey>(this IServiceCollection services, TServiceKey serviceKey, RetryStrategyOptions retryOptions) {}
  }
}
// API list generated by Smdn.Reflection.ReverseGenerating.ListApi.MSBuild.Tasks v1.5.0.0.
// Smdn.Reflection.ReverseGenerating.ListApi.Core v1.3.1.0 (https://github.com/smdn/Smdn.Reflection.ReverseGenerating)
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
2.0.0-preview5 131 6/14/2025
2.0.0-preview4 100 10/16/2024
2.0.0-preview3 76 9/6/2024
2.0.0-preview2 80 6/30/2024
2.0.0-preview1 95 4/7/2024