40 lines
1.7 KiB
C#
40 lines
1.7 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Reflection
|
|
{
|
|
/// <summary>The exception that is thrown when binding to a member results in more than one member matching the binding criteria. This class cannot be inherited.</summary>
|
|
// Token: 0x02000204 RID: 516
|
|
[Token(Token = "0x2000204")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public sealed class AmbiguousMatchException : SystemException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.AmbiguousMatchException" /> class with an empty message string and the root cause exception set to <see langword="null" />.</summary>
|
|
// Token: 0x060013B5 RID: 5045 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60013B5")]
|
|
[Address(RVA = "0x2A00960", Offset = "0x29FF760", VA = "0x182A00960")]
|
|
public AmbiguousMatchException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.AmbiguousMatchException" /> class with its message string set to the given message and the root cause exception set to <see langword="null" />.</summary>
|
|
/// <param name="message">A string indicating the reason this exception was thrown.</param>
|
|
// Token: 0x060013B6 RID: 5046 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60013B6")]
|
|
[Address(RVA = "0x2A00930", Offset = "0x29FF730", VA = "0x182A00930")]
|
|
public AmbiguousMatchException(string message)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060013B7 RID: 5047 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60013B7")]
|
|
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
|
|
internal AmbiguousMatchException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|