Share via


ChunkingCookieManager.GetRequestCookie Method (IOwinContext, String)

 

Get the reassembled cookie. Non chunked cookies are returned normally. Cookies with missing chunks just have their "chunks:XX" header returned.

Namespace:   Microsoft.Owin.Infrastructure
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)

Syntax

public string GetRequestCookie(
    IOwinContext context,
    string key
)
public:
virtual String^ GetRequestCookie(
    IOwinContext^ context,
    String^ key
) sealed
abstract GetRequestCookie : 
        context:IOwinContext *
        key:string -> string
override GetRequestCookie : 
        context:IOwinContext *
        key:string -> string
Public Function GetRequestCookie (
    context As IOwinContext,
    key As String
) As String

Parameters

Return Value

Type: System.String

The reassembled cookie, if any, or null.

Implements

ICookieManager.GetRequestCookie(IOwinContext, String)

See Also

ChunkingCookieManager Class
Microsoft.Owin.Infrastructure Namespace

Return to top