1 instantiation of AuthenticationRefreshOptions
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
264_authenticationRefreshOptions = serviceProvider.GetService<IOptions<AuthenticationRefreshOptions>>()?.Value ?? new AuthenticationRefreshOptions();
6 references to AuthenticationRefreshOptions
Microsoft.AspNetCore.SignalR.Client.Core (6)
AuthenticationRefreshOptions.cs (2)
58/// Context passed to <see cref="AuthenticationRefreshOptions.OnAuthenticationRefreshed"/> after a successful refresh. 86/// Context passed to <see cref="AuthenticationRefreshOptions.OnAuthenticationRefreshFailed"/> when a refresh attempt fails.
HubConnection.cs (2)
96private readonly AuthenticationRefreshOptions _authenticationRefreshOptions; 264_authenticationRefreshOptions = serviceProvider.GetService<IOptions<AuthenticationRefreshOptions>>()?.Value ?? new AuthenticationRefreshOptions();
HubConnectionBuilderExtensions.cs (2)
96/// <param name="configure">A delegate that configures the <see cref="AuthenticationRefreshOptions"/>.</param> 98public static IHubConnectionBuilder WithAuthenticationRefresh(this IHubConnectionBuilder hubConnectionBuilder, Action<AuthenticationRefreshOptions> configure)