Files
27Aug2021-Cpp2IL-Dump/System/Net/ProtocolViolationException.cs
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

61 lines
3.6 KiB
C#

using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Net
{
/// <summary>The exception that is thrown when an error is made while using a network protocol.</summary>
// Token: 0x02000233 RID: 563
[Token(Token = "0x2000233")]
[Serializable]
public class ProtocolViolationException : InvalidOperationException, ISerializable
{
/// <summary>Initializes a new instance of the <see cref="T:System.Net.ProtocolViolationException" /> class.</summary>
// Token: 0x06000E1E RID: 3614 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000E1E")]
[Address(RVA = "0x8AC420", Offset = "0x8AB420", VA = "0x1808AC420")]
public ProtocolViolationException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Net.ProtocolViolationException" /> class with the specified message.</summary>
/// <param name="message">The error message string.</param>
// Token: 0x06000E1F RID: 3615 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000E1F")]
[Address(RVA = "0x8AC410", Offset = "0x8AB410", VA = "0x1808AC410")]
public ProtocolViolationException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Net.ProtocolViolationException" /> class from the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> instances.</summary>
/// <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that contains the information that is required to deserialize the <see cref="T:System.Net.ProtocolViolationException" />.</param>
/// <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the source of the serialized stream that is associated with the new <see cref="T:System.Net.ProtocolViolationException" />.</param>
// Token: 0x06000E20 RID: 3616 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000E20")]
[Address(RVA = "0x71ABC0", Offset = "0x719BC0", VA = "0x18071ABC0")]
protected ProtocolViolationException(SerializationInfo serializationInfo, StreamingContext streamingContext)
{
}
/// <summary>Serializes this instance into the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</summary>
/// <param name="serializationInfo">The object into which this <see cref="T:System.Net.ProtocolViolationException" /> will be serialized.</param>
/// <param name="streamingContext">The destination of the serialization.</param>
// Token: 0x06000E21 RID: 3617 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000E21")]
[Address(RVA = "0x7754D0", Offset = "0x7744D0", VA = "0x1807754D0", Slot = "4")]
void ISerializable.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
{
}
/// <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data required to serialize the target object.</summary>
/// <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
/// <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for this serialization.</param>
// Token: 0x06000E22 RID: 3618 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000E22")]
[Address(RVA = "0x7754D0", Offset = "0x7744D0", VA = "0x1807754D0", Slot = "10")]
public override void GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
{
}
}
}