1 type derived from HubCallerContext
Microsoft.AspNetCore.SignalR.Core (1)
Internal\DefaultHubCallerContext.cs (1)
12internal sealed class DefaultHubCallerContext : HubCallerContext
20 references to HubCallerContext
Microsoft.AspNetCore.SignalR (1)
GetHttpContextExtensions.cs (1)
19public static HttpContext? GetHttpContext(this HubCallerContext connection)
Microsoft.AspNetCore.SignalR.Core (19)
Hub.cs (4)
17private HubCallerContext _context = default!; 40public HubCallerContext Context 92/// available on <see cref="HubCallerContext.User"/>. 101/// Authentication refresh does not change <see cref="HubCallerContext.UserIdentifier"/> or rekey
HubConnectionContext.cs (1)
116internal HubCallerContext HubCallerContext
HubInvocationContext.cs (3)
24public HubInvocationContext(HubCallerContext context, IServiceProvider serviceProvider, Hub hub, MethodInfo hubMethod, IReadOnlyList<object?> hubMethodArguments) 33internal HubInvocationContext(ObjectMethodExecutor objectMethodExecutor, HubCallerContext context, IServiceProvider serviceProvider, Hub hub, object?[] hubMethodArguments) 42public HubCallerContext Context { get; }
HubLifetimeContext.cs (2)
17public HubLifetimeContext(HubCallerContext context, IServiceProvider serviceProvider, Hub hub) 27public HubCallerContext Context { get; }
Internal\DefaultHubDispatcher.cs (9)
92var hubCallerContext = connection.HubCallerContext; 129var hubCallerContext = connection.HubCallerContext; 176var hubCallerContext = connection.HubCallerContext; 378var hubCallerContext = connection.HubCallerContext; 440HubCallerContext hubCallerContext, 588private async Task StreamAsync(string invocationId, HubConnectionContext connection, HubCallerContext hubCallerContext, object?[] arguments, AsyncServiceScope scope, 691private ValueTask<object?> ExecuteHubMethod(ObjectMethodExecutor methodExecutor, THub hub, object?[] arguments, HubCallerContext hubCallerContext, IServiceProvider serviceProvider) 746HubCallerContext hubCallerContext, 759HubCallerContext hubCallerContext,