24 lines
830 B
C#
24 lines
830 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO.Pipelines;
|
|
using System.Linq;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.AspNetCore.Sockets;
|
|
using Microsoft.Extensions.DependencyInjection.Extensions;
|
|
|
|
namespace Microsoft.Extensions.DependencyInjection
|
|
{
|
|
public static class SocketsDependencyInjectionExtensions
|
|
{
|
|
public static IServiceCollection AddSockets(this IServiceCollection services)
|
|
{
|
|
services.AddRouting();
|
|
services.TryAddSingleton<ConnectionManager>();
|
|
services.TryAddEnumerable(ServiceDescriptor.Singleton<IHostedService, SocketsApplicationLifetimeService>());
|
|
services.TryAddSingleton<PipelineFactory>();
|
|
services.TryAddSingleton<HttpConnectionDispatcher>();
|
|
return services;
|
|
}
|
|
}
|
|
}
|