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

53 lines
2.9 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
/// <summary>The exception that is thrown when the key specified for accessing an element in a collection does not match any key in the collection.</summary>
// Token: 0x02000614 RID: 1556
[Token(Token = "0x2000614")]
[ComVisible(true)]
[Serializable]
public class KeyNotFoundException : SystemException, ISerializable
{
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.KeyNotFoundException" /> class using default property values.</summary>
// Token: 0x06002F16 RID: 12054 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002F16")]
[Address(RVA = "0x2544850", Offset = "0x2543650", VA = "0x182544850")]
public KeyNotFoundException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.KeyNotFoundException" /> class with the specified error message.</summary>
/// <param name="message">The message that describes the error.</param>
// Token: 0x06002F17 RID: 12055 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002F17")]
[Address(RVA = "0x2544820", Offset = "0x2543620", VA = "0x182544820")]
public KeyNotFoundException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.KeyNotFoundException" /> class with the specified error message and a reference to the inner exception that is the cause of this exception.</summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
/// <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
// Token: 0x06002F18 RID: 12056 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002F18")]
[Address(RVA = "0x25447F0", Offset = "0x25435F0", VA = "0x1825447F0")]
public KeyNotFoundException(string message, Exception innerException)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.KeyNotFoundException" /> class with serialized data.</summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
// Token: 0x06002F19 RID: 12057 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002F19")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected KeyNotFoundException(SerializationInfo info, StreamingContext context)
{
}
}
}