2 implementations of Append
Microsoft.AspNetCore.CookiePolicy (1)
ResponseCookiesWrapper.cs (1)
124public void Append(string key, string value, CookieOptions options)
Microsoft.AspNetCore.Http (1)
Internal\ResponseCookies.cs (1)
44public void Append(string key, string value, CookieOptions options)
15 references to Append
Aspire.Dashboard (1)
DashboardEndpointsBuilder.cs (1)
86httpContext.Response.Cookies.Append(
Microsoft.AspNetCore.Antiforgery (1)
Internal\DefaultAntiforgeryTokenStore.cs (1)
99httpContext.Response.Cookies.Append(_options.Cookie.Name!, token, options);
Microsoft.AspNetCore.Authentication (1)
RemoteAuthenticationHandler.cs (1)
240Response.Cookies.Append(cookieName, CorrelationMarker, cookieOptions);
Microsoft.AspNetCore.Authentication.Cookies (2)
src\aspnetcore\src\Shared\ChunkingCookieManager\ChunkingCookieManager.cs (2)
155responseCookies.Append(key, string.Empty, options); 174responseCookies.Append(key, value, options);
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectHandler.cs (1)
1165Response.Cookies.Append(
Microsoft.AspNetCore.Authentication.Twitter (1)
TwitterHandler.cs (1)
177Response.Cookies.Append(Options.StateCookie.Name!, Options.StateDataFormat.Protect(requestToken), cookieOptions);
Microsoft.AspNetCore.Components.Endpoints (2)
src\aspnetcore\src\Shared\ChunkingCookieManager\ChunkingCookieManager.cs (2)
155responseCookies.Append(key, string.Empty, options); 174responseCookies.Append(key, value, options);
Microsoft.AspNetCore.CookiePolicy (1)
ResponseCookiesWrapper.cs (1)
130Cookies.Append(key, value, options);
Microsoft.AspNetCore.Http.Features (1)
IResponseCookies.cs (1)
35Append(keyValuePair.Key, keyValuePair.Value, options);
Microsoft.AspNetCore.Mvc.Core (2)
src\aspnetcore\src\Shared\ChunkingCookieManager\ChunkingCookieManager.cs (2)
155responseCookies.Append(key, string.Empty, options); 174responseCookies.Append(key, value, options);
Microsoft.AspNetCore.Rewrite (1)
UrlActions\ChangeCookieAction.cs (1)
38context.HttpContext.Response.Cookies.Append(Name, Value ?? string.Empty, options);
Microsoft.AspNetCore.Session (1)
SessionMiddleware.cs (1)
144response.Cookies.Append(_options.Cookie.Name!, _cookieValue, cookieOptions);