Compartir a través de


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

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
Public Property ChunkSize As Nullable(Of Integer)

Property Value

Type: System.Nullable<Int32>

Returns Nullable<T>.

See Also

ChunkingCookieManager Class
Microsoft.Owin.Infrastructure Namespace

Return to top