1 implementation of IConnectionCompleteFeature
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\KestrelConnection.cs (1)
10
internal abstract class KestrelConnection : IConnectionHeartbeatFeature,
IConnectionCompleteFeature
, IConnectionLifetimeNotificationFeature, IConnectionMetricsContextFeature
5 references to IConnectionCompleteFeature
Microsoft.AspNetCore.Authentication.Negotiate (3)
NegotiateHandler.cs (3)
427
var
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)
75
void
IConnectionCompleteFeature
.OnCompleted(Func<object, Task> callback, object state)
Internal\Infrastructure\KestrelConnectionOfT.cs (1)
28
connectionContext.Features.Set<
IConnectionCompleteFeature
>(this);