ChunkingCookieManager.ChunkSize 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.
The maximum size of cookie to send back to the client. If a cookie exceeds this size it will be broken down into multiple cookies. Set this value to null to disable this behavior. The default is 4050 characters, which is supported by all common browsers.
Note that browsers may also have limits on the total size of all cookies per domain, and on the number of cookies per domain.
public:
property Nullable<int> ChunkSize { Nullable<int> get(); void set(Nullable<int> value); };
public int? ChunkSize { get; set; }
member this.ChunkSize : Nullable<int> with get, set
Public Property ChunkSize As Nullable(Of Integer)