ChunkingCookieManager.GetRequestCookie(IOwinContext, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Get the reassembled cookie. Non chunked cookies are returned normally. Cookies with missing chunks just have their "chunks-XX" header returned.
public:
virtual System::String ^ GetRequestCookie(Microsoft::Owin::IOwinContext ^ context, System::String ^ key);
public string GetRequestCookie (Microsoft.Owin.IOwinContext context, string key);
abstract member GetRequestCookie : Microsoft.Owin.IOwinContext * string -> string
override this.GetRequestCookie : Microsoft.Owin.IOwinContext * string -> string
Public Function GetRequestCookie (context As IOwinContext, key As String) As String
Parameters
- context
- Microsoft.Owin.IOwinContext
- key
- String
Returns
The reassembled cookie, if any, or null.
Implements
Microsoft.Owin.Infrastructure.ICookieManager.GetRequestCookie(Microsoft.Owin.IOwinContext,System.String)