1 implementation of IConnectionCompleteFeature
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\KestrelConnection.cs (1)
10internal abstract class KestrelConnection : IConnectionHeartbeatFeature, IConnectionCompleteFeature, IConnectionLifetimeNotificationFeature, IConnectionMetricsContextFeature
5 references to IConnectionCompleteFeature
Microsoft.AspNetCore.Authentication.Negotiate (3)
NegotiateHandler.cs (3)
427var connectionCompleteFeature = Context.Features.Get<IConnectionCompleteFeature>() 428?? throw new NotSupportedException($"Negotiate authentication requires a server that supports {nameof(IConnectionCompleteFeature)} like Kestrel.");
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Infrastructure\KestrelConnection.cs (1)
75void IConnectionCompleteFeature.OnCompleted(Func<object, Task> callback, object state)
Internal\Infrastructure\KestrelConnectionOfT.cs (1)
28connectionContext.Features.Set<IConnectionCompleteFeature>(this);