1 type derived from HubCallerContext
Microsoft.AspNetCore.SignalR.Core (1)
Internal\DefaultHubCallerContext.cs (1)
12internal sealed class DefaultHubCallerContext : HubCallerContext
10 references to HubCallerContext
Microsoft.AspNetCore.Components.Server.Tests (1)
Circuits\ComponentHubTest.cs (1)
133var mockContext = new Mock<HubCallerContext>();
Microsoft.AspNetCore.SignalR (1)
GetHttpContextExtensions.cs (1)
19public static HttpContext? GetHttpContext(this HubCallerContext connection)
Microsoft.AspNetCore.SignalR.Core (8)
Hub.cs (2)
17private HubCallerContext _context = default!; 40public HubCallerContext Context
HubConnectionContext.cs (1)
112internal HubCallerContext HubCallerContext { get; }
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; }