Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- using Microsoft.Extensions.DependencyInjection;
- using System;
- using System.Collections.Generic;
- using System.Text;
-
- namespace JT808.DotNetty.Client
- {
- public static class JT808ClientDotnettyExtensions
- {
- public static IServiceCollection AddJT808Client(this IServiceCollection serviceDescriptors)
- {
- serviceDescriptors.AddSingleton<IJT808TcpClientFactory, JT808TcpClientFactory>();
- return serviceDescriptors;
- }
- }
- }
|