This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,39 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when there is an attempt to combine two delegates based on the <see cref="T:System.Delegate" /> type instead of the <see cref="T:System.MulticastDelegate" /> type. This class cannot be inherited.</summary>
// Token: 0x02000123 RID: 291
[Token(Token = "0x2000123")]
[ComVisible(true)]
[Serializable]
public sealed class MulticastNotSupportedException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.MulticastNotSupportedException" /> class.</summary>
// Token: 0x06000A9C RID: 2716 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A9C")]
[Address(RVA = "0x2D6E590", Offset = "0x2D6D590", VA = "0x182D6E590")]
public MulticastNotSupportedException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.MulticastNotSupportedException" /> class with a specified error message.</summary>
/// <param name="message">The message that describes the error.</param>
// Token: 0x06000A9D RID: 2717 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A9D")]
[Address(RVA = "0x2D6E5F0", Offset = "0x2D6D5F0", VA = "0x182D6E5F0")]
public MulticastNotSupportedException(string message)
{
}
// Token: 0x06000A9E RID: 2718 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A9E")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
internal MulticastNotSupportedException(SerializationInfo info, StreamingContext context)
{
}
}
}