This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
+60
View File
@@ -0,0 +1,60 @@
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: 0x02000237 RID: 567
[Token(Token = "0x2000237")]
[Serializable]
public class ProtocolViolationException : InvalidOperationException, ISerializable
{
/// <summary>Initializes a new instance of the <see cref="T:System.Net.ProtocolViolationException" /> class.</summary>
// Token: 0x06000E34 RID: 3636 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000E34")]
[Address(RVA = "0x2231DD0", Offset = "0x2230BD0", VA = "0x182231DD0")]
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: 0x06000E35 RID: 3637 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000E35")]
[Address(RVA = "0x9483B0", Offset = "0x9471B0", VA = "0x1809483B0")]
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: 0x06000E36 RID: 3638 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000E36")]
[Address(RVA = "0x4E7140", Offset = "0x4E5F40", VA = "0x1804E7140")]
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: 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)
{
}
/// <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: 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)
{
}
}
}