Namespace: Microsoft.IdentityModel.Web
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)
Usage
Visual Basic |
---|
Dim instance As ChunkedCookieHandler |
Syntax
Visual Basic |
---|
Public NotInheritable Class ChunkedCookieHandler Inherits CookieHandler |
C# |
---|
public sealed class ChunkedCookieHandler : CookieHandler |
C++ |
---|
public ref class ChunkedCookieHandler sealed : public CookieHandler |
J# |
---|
public final class ChunkedCookieHandler extends CookieHandler |
JScript |
---|
public final class ChunkedCookieHandler extends CookieHandler |
Remarks
ChunkedCookieHandler abstracts the idea of a cookie, so that one call to Write may in fact write a series of cookies, so that each client side cookie does not exceed the chunk size.
Cookie names are constructed based on the 'name' parameter to Write, Read, or Delete. The cookie names are constructed by appending a number to the base name: name, name1, name2, ...
Inheritance Hierarchy
System.Object
Microsoft.IdentityModel.Web.CookieHandler
Microsoft.IdentityModel.Web.ChunkedCookieHandler
Microsoft.IdentityModel.Web.CookieHandler
Microsoft.IdentityModel.Web.ChunkedCookieHandler
Thread Safety
Any public static (Shared in Visual
Basic) members of this type are thread safe. Any instance members
are not guaranteed to be thread safe.