File: src\Shared\Http2cat\Http2CatIServiceCollectionExtensions.cs
Web Access
Project: src\src\Servers\Kestrel\samples\http2cat\http2cat.csproj (http2cat)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
using Microsoft.AspNetCore.Connections;
using Microsoft.AspNetCore.Http2Cat;
using Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets;
 
namespace Microsoft.Extensions.DependencyInjection;
 
internal static class Http2CatIServiceCollectionExtensions
{
    public static IServiceCollection UseHttp2Cat(this IServiceCollection services, Action<Http2CatOptions> configureOptions)
    {
        services.AddSingleton<IConnectionFactory, SocketConnectionFactory>();
        services.AddHostedService<Http2CatHostedService>();
        services.Configure(configureOptions);
        return services;
    }
}