CookieHandlerElement.ChunkedCookieHandler Property

Definition

Gets or sets a chunked cookie handler.

C#
[System.Configuration.ConfigurationProperty("chunkedCookieHandler", IsRequired=false)]
public System.IdentityModel.Services.ChunkedCookieHandlerElement ChunkedCookieHandler { get; set; }

Property Value

A ChunkedCookieHandlerElement that provides additional configuration for the chunked cookie handler.

Attributes

Remarks

This property is equivalent to the <chunkedCookieHandler> child element of the <cookieHandler> element. It specifies a chunked cookie handler, an instance of the ChunkedCookieHandler class, to use. If it is set, the Mode property should be set to either Default or Chunked. If the Mode property is set to either of these values but the ChunkedCookieHandler property is not set, a chunked cookie handler with the default chunk size (ChunkedCookieHandler.DefaultChunkSize) is configured.

Either the ChunkedCookieHandler property or the CustomCookieHandler property may be set, but not both.

Applies to

Product Versions
.NET Framework 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also