using System; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Net { /// The exception that is thrown when an error is made while using a network protocol. // Token: 0x02000237 RID: 567 [Token(Token = "0x2000237")] [Serializable] public class ProtocolViolationException : InvalidOperationException, ISerializable { /// Initializes a new instance of the class. // Token: 0x06000E34 RID: 3636 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000E34")] [Address(RVA = "0x2231DD0", Offset = "0x2230BD0", VA = "0x182231DD0")] public ProtocolViolationException() { } /// Initializes a new instance of the class with the specified message. /// The error message string. // Token: 0x06000E35 RID: 3637 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000E35")] [Address(RVA = "0x9483B0", Offset = "0x9471B0", VA = "0x1809483B0")] public ProtocolViolationException(string message) { } /// Initializes a new instance of the class from the specified and instances. /// A that contains the information that is required to deserialize the . /// A that contains the source of the serialized stream that is associated with the new . // Token: 0x06000E36 RID: 3638 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000E36")] [Address(RVA = "0x4E7140", Offset = "0x4E5F40", VA = "0x1804E7140")] protected ProtocolViolationException(SerializationInfo serializationInfo, StreamingContext streamingContext) { } /// Serializes this instance into the specified object. /// The object into which this will be serialized. /// The destination of the serialization. // Token: 0x06000E37 RID: 3639 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000E37")] [Address(RVA = "0x403D80", Offset = "0x402B80", VA = "0x180403D80", Slot = "4")] void ISerializable.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) { } /// Populates a with the data required to serialize the target object. /// The to populate with data. /// A that specifies the destination for this serialization. // Token: 0x06000E38 RID: 3640 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000E38")] [Address(RVA = "0x403D80", Offset = "0x402B80", VA = "0x180403D80", Slot = "10")] public override void GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) { } } }