Files
Aug2021-Cpp2IL-Dump/mscorlib/System/Resources/MissingSatelliteAssemblyException.cs
2026-04-10 22:50:51 +02:00

49 lines
2.2 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Resources
{
/// <summary>The exception that is thrown when the satellite assembly for the resources of the default culture is missing.</summary>
// Token: 0x020001F3 RID: 499
[Token(Token = "0x20001F3")]
[ComVisible(true)]
[Serializable]
public class MissingSatelliteAssemblyException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Resources.MissingSatelliteAssemblyException" /> class with default properties.</summary>
// Token: 0x06001331 RID: 4913 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001331")]
[Address(RVA = "0x294F910", Offset = "0x294E710", VA = "0x18294F910")]
public MissingSatelliteAssemblyException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Resources.MissingSatelliteAssemblyException" /> class with a specified error message and the name of a neutral culture.</summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
/// <param name="cultureName">The name of the neutral culture.</param>
// Token: 0x06001332 RID: 4914 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001332")]
[Address(RVA = "0x294F970", Offset = "0x294E770", VA = "0x18294F970")]
public MissingSatelliteAssemblyException(string message, string cultureName)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Resources.MissingSatelliteAssemblyException" /> class from serialized data.</summary>
/// <param name="info">The object that holds the serialized object data.</param>
/// <param name="context">The contextual information about the source or destination of the exception.</param>
// Token: 0x06001333 RID: 4915 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001333")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected MissingSatelliteAssemblyException(SerializationInfo info, StreamingContext context)
{
}
// Token: 0x040009AB RID: 2475
[global::Cpp2IlInjected.FieldOffset(Offset = "0x88")]
[Token(Token = "0x40009AB")]
private string _cultureName;
}
}