7 writes to Events
Identity.DefaultUI.WebSite (1)
Services\ContosoAuthenticationOptions.cs (1)
12Events = new object();
Microsoft.AspNetCore.Authentication (1)
RemoteAuthenticationOptions.cs (1)
125set => base.Events = value;
Microsoft.AspNetCore.Authentication.BearerToken (1)
BearerTokenOptions.cs (1)
73set { base.Events = value; }
Microsoft.AspNetCore.Authentication.Certificate (1)
CertificateAuthenticationOptions.cs (1)
84set { base.Events = value; }
Microsoft.AspNetCore.Authentication.Cookies (1)
CookieAuthenticationOptions.cs (1)
102set => base.Events = value;
Microsoft.AspNetCore.Authentication.JwtBearer (1)
JwtBearerOptions.cs (1)
75set { base.Events = value; }
Microsoft.AspNetCore.Authentication.Negotiate (1)
NegotiateOptions.cs (1)
19set { base.Events = value; }
7 references to Events
Microsoft.AspNetCore.Authentication (2)
AuthenticationHandler.cs (1)
171Events = Options.Events;
RemoteAuthenticationOptions.cs (1)
124get => (RemoteAuthenticationEvents)base.Events!;
Microsoft.AspNetCore.Authentication.BearerToken (1)
BearerTokenOptions.cs (1)
72get { return (BearerTokenEvents)base.Events!; }
Microsoft.AspNetCore.Authentication.Certificate (1)
CertificateAuthenticationOptions.cs (1)
82get { return (CertificateAuthenticationEvents?)base.Events; }
Microsoft.AspNetCore.Authentication.Cookies (1)
CookieAuthenticationOptions.cs (1)
101get => (CookieAuthenticationEvents)base.Events!;
Microsoft.AspNetCore.Authentication.JwtBearer (1)
JwtBearerOptions.cs (1)
74get { return (JwtBearerEvents)base.Events!; }
Microsoft.AspNetCore.Authentication.Negotiate (1)
NegotiateOptions.cs (1)
18get { return (NegotiateEvents?)base.Events; }