ChunkingCookieManager.AppendResponseCookie Method

Definition

Appends a new response cookie to the Set-Cookie header. If the cookie is larger than the given size limit then it will be broken down into multiple cookies as follows: Set-Cookie: CookieName=chunks-3; path=/ Set-Cookie: CookieNameC1=Segment1; path=/ Set-Cookie: CookieNameC2=Segment2; path=/ Set-Cookie: CookieNameC3=Segment3; path=/

public:
 virtual void AppendResponseCookie(Microsoft::Owin::IOwinContext ^ context, System::String ^ key, System::String ^ value, Microsoft::Owin::CookieOptions ^ options);
public void AppendResponseCookie (Microsoft.Owin.IOwinContext context, string key, string value, Microsoft.Owin.CookieOptions options);
abstract member AppendResponseCookie : Microsoft.Owin.IOwinContext * string * string * Microsoft.Owin.CookieOptions -> unit
override this.AppendResponseCookie : Microsoft.Owin.IOwinContext * string * string * Microsoft.Owin.CookieOptions -> unit
Public Sub AppendResponseCookie (context As IOwinContext, key As String, value As String, options As CookieOptions)

Parameters

context
Microsoft.Owin.IOwinContext
key
String
value
String
options
Microsoft.Owin.CookieOptions

Implements

Microsoft.Owin.Infrastructure.ICookieManager.AppendResponseCookie(Microsoft.Owin.IOwinContext,System.String,System.String,Microsoft.Owin.CookieOptions)

Applies to