40 lines
1.6 KiB
C#
40 lines
1.6 KiB
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|