using System; using System.Runtime.Serialization; namespace System.Net { /// The exception that is thrown when an error is made adding a to a . // Token: 0x02000209 RID: 521 [Serializable] public class CookieException : FormatException, ISerializable { /// Initializes a new instance of the class. // Token: 0x060011C5 RID: 4549 RVA: 0x00034E50 File Offset: 0x00033050 public CookieException() { } // Token: 0x060011C6 RID: 4550 RVA: 0x00034E58 File Offset: 0x00033058 internal CookieException(string msg) : base(msg) { } // Token: 0x060011C7 RID: 4551 RVA: 0x00034E64 File Offset: 0x00033064 internal CookieException(string msg, Exception e) : base(msg, e) { } /// Initializes a new instance of the class with specific values of and . /// The to be used. /// The to be used. // Token: 0x060011C8 RID: 4552 RVA: 0x00034E70 File Offset: 0x00033070 protected CookieException(SerializationInfo info, StreamingContext context) : base(info, context) { } /// Populates a instance with the data needed to serialize the . /// The to be used. /// The to be used. // Token: 0x060011C9 RID: 4553 RVA: 0x00034E7C File Offset: 0x0003307C void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) { base.GetObjectData(info, context); } /// Populates a instance with the data needed to serialize the . /// The object that holds the serialized object data. The to populate with data. /// The contextual information about the source or destination. A that specifies the destination for this serialization. // Token: 0x060011CA RID: 4554 RVA: 0x00034E88 File Offset: 0x00033088 public override void GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) { base.GetObjectData(serializationInfo, streamingContext); } } }