CookieHandlerElement.ChunkedCookieHandler Property
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.
Gets or sets a chunked cookie handler.
public:
property System::IdentityModel::Services::ChunkedCookieHandlerElement ^ ChunkedCookieHandler { System::IdentityModel::Services::ChunkedCookieHandlerElement ^ get(); void set(System::IdentityModel::Services::ChunkedCookieHandlerElement ^ value); };
[System.Configuration.ConfigurationProperty("chunkedCookieHandler", IsRequired=false)]
public System.IdentityModel.Services.ChunkedCookieHandlerElement ChunkedCookieHandler { get; set; }
[<System.Configuration.ConfigurationProperty("chunkedCookieHandler", IsRequired=false)>]
member this.ChunkedCookieHandler : System.IdentityModel.Services.ChunkedCookieHandlerElement with get, set
Public Property ChunkedCookieHandler As ChunkedCookieHandlerElement
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.