using System; namespace Microsoft.AspNetCore.Connections { public interface IConnectionBuilder { IServiceProvider ApplicationServices { get; } IConnectionBuilder Use(Func middleware); ConnectionDelegate Build(); } }