File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/Security/Authentication/Cookies/src Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ public interface ITicketStore
30
30
/// Retrieves an identity from the store for the given key.
31
31
/// </summary>
32
32
/// <param name="key">The key associated with the identity.</param>
33
- /// <returns>The identity associated with the given key, or if not found.</returns>
34
- Task < AuthenticationTicket > RetrieveAsync ( string key ) ;
33
+ /// <returns>The identity associated with the given key, or <c>null</c> if not found.</returns>
34
+ Task < AuthenticationTicket ? > RetrieveAsync ( string key ) ;
35
35
36
36
/// <summary>
37
37
/// Remove the identity associated with the given key.
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ Microsoft.AspNetCore.Authentication.Cookies.ICookieManager.GetRequestCookie(Micr
80
80
Microsoft.AspNetCore.Authentication.Cookies.ITicketStore
81
81
Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.RemoveAsync(string! key) -> System.Threading.Tasks.Task!
82
82
Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.RenewAsync(string! key, Microsoft.AspNetCore.Authentication.AuthenticationTicket! ticket) -> System.Threading.Tasks.Task!
83
- Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.RetrieveAsync(string! key) -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket! >!
83
+ Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.RetrieveAsync(string! key) -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket? >!
84
84
Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.StoreAsync(Microsoft.AspNetCore.Authentication.AuthenticationTicket! ticket) -> System.Threading.Tasks.Task<string!>!
85
85
Microsoft.AspNetCore.Authentication.Cookies.PostConfigureCookieAuthenticationOptions
86
86
Microsoft.AspNetCore.Authentication.Cookies.PostConfigureCookieAuthenticationOptions.PostConfigure(string! name, Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationOptions! options) -> void
You can’t perform that action at this time.
0 commit comments