1 implementation of OnAuthenticationRefresh
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
262public Func<AuthenticationRefreshContext, Task<bool>> OnAuthenticationRefresh
3 writes to OnAuthenticationRefresh
Microsoft.AspNetCore.Components.Server (1)
ComponentHub.cs (1)
80Context.Features.Get<IConnectionAuthenticationRefreshFeature>()?.OnAuthenticationRefresh = static _ => Task.FromResult(true);
Microsoft.AspNetCore.SignalR.Core (2)
HubConnectionHandler.cs (2)
164authenticationRefreshFeature.OnAuthenticationRefresh = authenticationRefreshCallback; 185authenticationRefreshFeature.OnAuthenticationRefresh = previousOnAuthenticationRefresh!;
3 references to OnAuthenticationRefresh
Microsoft.AspNetCore.Http.Connections (1)
HttpConnectionDispatcherOptions.cs (1)
153/// <see cref="IConnectionAuthenticationRefreshFeature.OnAuthenticationRefresh"/>
Microsoft.AspNetCore.SignalR.Core (2)
HubConnectionHandler.cs (2)
161previousOnAuthenticationRefresh = authenticationRefreshFeature.OnAuthenticationRefresh; 183&& ReferenceEquals(authenticationRefreshFeature.OnAuthenticationRefresh, authenticationRefreshCallback))