Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Resources/MissingSatelliteAssemblyException.cs
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x020001FA RID: 506
[Token(Token = "0x20001FA")]
[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: 0x0600136E RID: 4974 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600136E")]
[Address(RVA = "0x2CF3920", Offset = "0x2CF2920", VA = "0x182CF3920")]
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: 0x0600136F RID: 4975 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600136F")]
[Address(RVA = "0x2CF3980", Offset = "0x2CF2980", VA = "0x182CF3980")]
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: 0x06001370 RID: 4976 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001370")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected MissingSatelliteAssemblyException(SerializationInfo info, StreamingContext context)
{
}
// Token: 0x040009B5 RID: 2485
[global::Cpp2IlInjected.FieldOffset(Offset = "0x88")]
[Token(Token = "0x40009B5")]
private string _cultureName;
}
}