Files
Apr2020-Cpp2Il-Dump/System/Net/CookieException.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

66 lines
3.5 KiB
C#

using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Net
{
/// <summary>The exception that is thrown when an error is made adding a <see cref="T:System.Net.Cookie" /> to a <see cref="T:System.Net.CookieContainer" />.</summary>
// Token: 0x02000266 RID: 614
[Token(Token = "0x2000266")]
[Serializable]
public class CookieException : FormatException, ISerializable
{
/// <summary>Initializes a new instance of the <see cref="T:System.Net.CookieException" /> class.</summary>
// Token: 0x06000F56 RID: 3926 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000F56")]
[Address(RVA = "0x71DAA0", Offset = "0x71C8A0", VA = "0x18071DAA0")]
public CookieException()
{
}
// Token: 0x06000F57 RID: 3927 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000F57")]
[Address(RVA = "0x71DAB0", Offset = "0x71C8B0", VA = "0x18071DAB0")]
internal CookieException(string message)
{
}
// Token: 0x06000F58 RID: 3928 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000F58")]
[Address(RVA = "0x29DE0D0", Offset = "0x29DCED0", VA = "0x1829DE0D0")]
internal CookieException(string message, Exception inner)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Net.CookieException" /> class with specific values of <paramref name="serializationInfo" /> and <paramref name="streamingContext" />.</summary>
/// <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to be used.</param>
/// <param name="streamingContext">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> to be used.</param>
// Token: 0x06000F59 RID: 3929 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000F59")]
[Address(RVA = "0x4E7140", Offset = "0x4E5F40", VA = "0x1804E7140")]
protected CookieException(SerializationInfo serializationInfo, StreamingContext streamingContext)
{
}
/// <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance with the data needed to serialize the <see cref="T:System.Net.CookieException" />.</summary>
/// <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to be used.</param>
/// <param name="streamingContext">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> to be used.</param>
// Token: 0x06000F5A RID: 3930 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000F5A")]
[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" /> instance with the data needed to serialize the <see cref="T:System.Net.CookieException" />.</summary>
/// <param name="serializationInfo">The object that holds the serialized object data. The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
/// <param name="streamingContext">The contextual information about the source or destination. A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for this serialization.</param>
// Token: 0x06000F5B RID: 3931 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000F5B")]
[Address(RVA = "0x403D80", Offset = "0x402B80", VA = "0x180403D80", Slot = "10")]
public override void GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
{
}
}
}