mscorlib(4.0.0.0) API with additions
CookieException.cs
3 
4 namespace System.Net
5 {
8  [global::__DynamicallyInvokable]
10  {
12  [global::__DynamicallyInvokable]
13  public CookieException()
14  {
15  }
16 
17  internal CookieException(string message)
18  : base(message)
19  {
20  }
21 
22  internal CookieException(string message, Exception inner)
23  : base(message, inner)
24  {
25  }
26 
30  protected CookieException(SerializationInfo serializationInfo, StreamingContext streamingContext)
31  : base(serializationInfo, streamingContext)
32  {
33  }
34 
38  [SecurityPermission(SecurityAction.LinkDemand, Flags = SecurityPermissionFlag.SerializationFormatter, SerializationFormatter = true)]
39  void ISerializable.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
40  {
41  base.GetObjectData(serializationInfo, streamingContext);
42  }
43 
47  [SecurityPermission(SecurityAction.LinkDemand, Flags = SecurityPermissionFlag.SerializationFormatter)]
48  public override void GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
49  {
50  base.GetObjectData(serializationInfo, streamingContext);
51  }
52  }
53 }
Describes a set of security permissions applied to code. This class cannot be inherited.
Definition: __Canon.cs:3
Describes the source and destination of a given serialized stream, and provides an additional caller-...
SecurityAction
Specifies the security actions that can be performed using declarative security.
The exception that is thrown when the format of an argument is invalid, or when a composite format st...
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
Allows an object to control its own serialization and deserialization.
Definition: ISerializable.cs:8
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition: Exception.cs:22
Specifies that the class can be serialized.
SecurityPermissionFlag
Specifies access flags for the security permission object.
void GetObjectData(SerializationInfo info, StreamingContext context)
Populates a T:System.Runtime.Serialization.SerializationInfo with the data needed to serialize the ta...