1 instantiation of AuthenticationRefreshOptions
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
286
_authenticationRefreshOptions = serviceProvider.GetService<IOptions<AuthenticationRefreshOptions>>()?.Value ?? new
AuthenticationRefreshOptions
();
4 references to AuthenticationRefreshOptions
Microsoft.AspNetCore.SignalR.Client.Core (4)
HubConnection.cs (2)
100
private readonly
AuthenticationRefreshOptions
_authenticationRefreshOptions;
286
_authenticationRefreshOptions = serviceProvider.GetService<IOptions<
AuthenticationRefreshOptions
>>()?.Value ?? new AuthenticationRefreshOptions();
HubConnectionBuilderExtensions.cs (2)
96
/// <param name="configure">A delegate that configures the <see cref="
AuthenticationRefreshOptions
"/>.</param>
98
public static IHubConnectionBuilder WithAuthenticationRefresh(this IHubConnectionBuilder hubConnectionBuilder, Action<
AuthenticationRefreshOptions
> configure)