ChunkingCookieManager.ChunkSize Property

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 4090 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.

Namespace:  Microsoft.Owin.Infrastructure
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)

Syntax

'Declaration
Public Property ChunkSize As Nullable(Of Integer)
    Get 
    Set
'Usage
Dim instance As ChunkingCookieManager 
Dim value As Nullable(Of Integer)

value = instance.ChunkSize

instance.ChunkSize = value
public Nullable<int> ChunkSize { get; set; }
public:
property Nullable<int> ChunkSize {
    Nullable<int> get ();
    void set (Nullable<int> value);
}
member ChunkSize : Nullable<int> with get, set
function get ChunkSize () : Nullable<int>
function set ChunkSize (value : Nullable<int>)

Property Value

Type: System.Nullable<Int32>
Returns Nullable<T>.

See Also

Reference

ChunkingCookieManager Class

Microsoft.Owin.Infrastructure Namespace