CookieHandlerElement::ChunkedCookieHandler Property

.NET Framework (current version)
 

Gets or sets a chunked cookie handler.

Namespace:   System.IdentityModel.Services
Assembly:  System.IdentityModel.Services (in System.IdentityModel.Services.dll)

public:
[ConfigurationPropertyAttribute("chunkedCookieHandler", IsRequired = false)]
property ChunkedCookieHandlerElement^ ChunkedCookieHandler {
	ChunkedCookieHandlerElement^ get();
	void set(ChunkedCookieHandlerElement^ value);
}

Property Value

Type: System.IdentityModel.Services::ChunkedCookieHandlerElement^

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

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.

.NET Framework
Available since 4.5
Return to top
Show: