CookieException Class

Definition

The exception that is thrown when an error is made adding a Cookie to a CookieContainer.

public ref class CookieException : FormatException
public class CookieException : FormatException
[System.Serializable]
public class CookieException : FormatException
type CookieException = class
    inherit FormatException
type CookieException = class
    inherit FormatException
    interface ISerializable
[<System.Serializable>]
type CookieException = class
    inherit FormatException
    interface ISerializable
Public Class CookieException
Inherits FormatException
Inheritance
CookieException
Inheritance
Attributes
Implements

Remarks

This exception is thrown if an attempt is made to Add a Cookie with length greater than MaxCookieSize to a CookieContainer.

Associated Tips

Make sure the cookie size does not exceed the maximum allowed by the cookie container. This exception is thrown when an attempt is made to add a Cookie with length greater than MaxCookieSize to a CookieContainer. The default maximum cookie size is 4096 bytes.

When setting the Name property for a cookie, make sure the value is not a null reference or empty string. The Name property must be initialized before using an instance of the Cookie class. The following characters are reserved and cannot be used for this attribute value: equal sign, semicolon, comma, new line (\n), carriage return (\r), tab (\t). The dollar sign ($) character cannot be the first character.

When setting the Port property for a cookie, make sure the value is valid and enclosed in double quotes. The Port attribute restricts the ports to which a cookie may be sent. The default value means no restriction. Setting the property to an empty string ("") restricts the port to the one used in the HTTP response. Otherwise the value must be a string in quotation marks that contains port values delineated with commas.

When setting the Value property for a cookie, make sure the value is not null. The following characters are reserved and cannot be used for this property: semicolon, comma.

Constructors

CookieException()

Initializes a new instance of the CookieException class.

CookieException(SerializationInfo, StreamingContext)
Obsolete.

Initializes a new instance of the CookieException class with specific values of serializationInfo and streamingContext.

Properties

Data

Gets a collection of key/value pairs that provide additional user-defined information about the exception.

(Inherited from Exception)
HelpLink

Gets or sets a link to the help file associated with this exception.

(Inherited from Exception)
HResult

Gets or sets HRESULT, a coded numerical value that is assigned to a specific exception.

(Inherited from Exception)
InnerException

Gets the Exception instance that caused the current exception.

(Inherited from Exception)
Message

Gets a message that describes the current exception.

(Inherited from Exception)
Source

Gets or sets the name of the application or the object that causes the error.

(Inherited from Exception)
StackTrace

Gets a string representation of the immediate frames on the call stack.

(Inherited from Exception)
TargetSite

Gets the method that throws the current exception.

(Inherited from Exception)

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetBaseException()

When overridden in a derived class, returns the Exception that is the root cause of one or more subsequent exceptions.

(Inherited from Exception)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetObjectData(SerializationInfo, StreamingContext)
Obsolete.

Populates a SerializationInfo instance with the data needed to serialize the CookieException.

GetObjectData(SerializationInfo, StreamingContext)
Obsolete.

When overridden in a derived class, sets the SerializationInfo with information about the exception.

(Inherited from Exception)
GetType()

Gets the runtime type of the current instance.

(Inherited from Exception)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Creates and returns a string representation of the current exception.

(Inherited from Exception)

Events

SerializeObjectState
Obsolete.

Occurs when an exception is serialized to create an exception state object that contains serialized data about the exception.

(Inherited from Exception)

Explicit Interface Implementations

ISerializable.GetObjectData(SerializationInfo, StreamingContext)

Populates a SerializationInfo instance with the data needed to serialize the CookieException.

Applies to

See also