2 instantiations of AuthenticatedContext
Microsoft.AspNetCore.Authentication.Negotiate (2)
NegotiateHandler.cs (2)
354
authenticatedContext = new
AuthenticatedContext
(Context, Scheme, Options)
361
authenticatedContext = new
AuthenticatedContext
(Context, Scheme, Options)
4 references to AuthenticatedContext
Microsoft.AspNetCore.Authentication.Negotiate (4)
Events\AuthenticatedContext.cs (1)
14
/// Creates a new <see cref="
AuthenticatedContext
"/>.
Events\NegotiateEvents.cs (2)
25
public Func<
AuthenticatedContext
, Task> OnAuthenticated { get; set; } = context => Task.CompletedTask;
45
public virtual Task Authenticated(
AuthenticatedContext
context) => OnAuthenticated(context);
NegotiateHandler.cs (1)
336
AuthenticatedContext
authenticatedContext;