Wisej.Base.CookieCollection
Namespace: Wisej.Base
Assembly: Wisej.Framework (3.1.0.0)
Manages the collection of cookies for the current application.
Int32: Returns the number of Cookie items in the collection.
String: Returns the Cookie with a specific name from a CookieCollection.
Throws:
ArgumentNullException name is null.
Cookie: Returns the Cookie with a specific name from a CookieCollection.
Throws:
IndexOutOfRangeException index is out of range.
Adds a cookie to the collection.
Adds a new cookie to the collection.
Returns: Cookie.
Adds a new cookie to the collection.
Returns: Cookie.
Adds a new cookie to the collection.
Returns: Cookie.
Adds a new cookie to the collection.
Returns: Cookie.
Delete all cookies from the collection. NOTE: Cookies are only removed from the collection, not from the client. You need to set the expiration date to remove it from the client.
Determines whether the cookie is present in the collection.
Returns: Boolean.
Copies the cookie collection to a compatible one-dimensional array, starting at the specified index of the target array.
Returns the cookie with the specified name.
Returns: Cookie.
Returns: IEnumerator<Cookie>.
Searches for the specified cookie and returns the zero-based index of the first occurrence.
Returns: Int32.
Searches for the specified cookie by name and returns the zero-based index of the first occurrence.
Returns: Int32.
Removes the specified cookie from the collection. NOTE: Cookies are only removed from the collection, not from the client. You need to set the expiration date to remove it from the client.
Returns: Boolean. true if item is successfully removed; otherwise, false.
Removes the specified cookie from the collection. NOTE: Cookies are only removed from the collection, not from the client. You need to set the expiration date to remove it from the client.
Returns: Boolean. true if item is successfully removed; otherwise, false.
Removes the cookie at the specified index. NOTE: Cookies are only removed from the collection, not from the client. You need to set the expiration date to remove it from the client.
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
cookie
The cookie to add.
name
The case-sensitive name of the cookie.
value
The value of the new cookie to add.
name
The case-sensitive name of the cookie.
value
The value of the new cookie to add.
domain
The domain, or partial domain, associated with the cookie.
name
The case-sensitive name of the cookie.
value
The value of the new cookie.
expires
The expiration date/time of the new cookie.
name
The case-sensitive name of the cookie.
value
The value of the new cookie.
domain
The value of the new cookie.
expires
The expiration date/time of the new cookie.
cookie
The cookie to locate.
array
The one-dimensional System.Array that is the destination of the elements copied.
index
The zero-based index in array at which copying begins.
name
The case-sensitive name of the cookie to locate.
cookie
The cookie to locate.
name
The case-sensitive name cookie to locate.
cookie
The cookie to remove from the collection.
name
The case-sensitive name of the cookie to remove from the collection.
index
The zero-based index of the element to remove.