using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Globalization { /// The exception that is thrown when a method attempts to construct a culture that is not available. // Token: 0x020002C9 RID: 713 [Token(Token = "0x20002C9")] [ComVisible(true)] [Serializable] public class CultureNotFoundException : ArgumentException, ISerializable { /// Initializes a new instance of the class with its message string set to a system-supplied message. // Token: 0x06001A6B RID: 6763 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001A6B")] [Address(RVA = "0x2BF69C0", Offset = "0x2BF57C0", VA = "0x182BF69C0")] public CultureNotFoundException() { } /// Initializes a new instance of the class with a specified error message and the name of the parameter that is the cause this exception. /// The name of the parameter that is the cause of the current exception. /// The error message to display with this exception. // Token: 0x06001A6C RID: 6764 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001A6C")] [Address(RVA = "0x2BF6B60", Offset = "0x2BF5960", VA = "0x182BF6B60")] public CultureNotFoundException(string paramName, string message) { } /// Initializes a new instance of the class with a specified error message, the invalid Culture Name, and the name of the parameter that is the cause this exception. /// The name of the parameter that is the cause the current exception. /// The Culture Name that cannot be found. /// The error message to display with this exception. // Token: 0x06001A6D RID: 6765 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001A6D")] [Address(RVA = "0x2BF6980", Offset = "0x2BF5780", VA = "0x182BF6980")] public CultureNotFoundException(string paramName, string invalidCultureName, string message) { } /// Initializes a new instance of the class using the specified serialization data and context. /// The object that holds the serialized object data. /// The contextual information about the source or destination. // Token: 0x06001A6E RID: 6766 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001A6E")] [Address(RVA = "0x2BF6A10", Offset = "0x2BF5810", VA = "0x182BF6A10")] protected CultureNotFoundException(SerializationInfo info, StreamingContext context) { } /// Sets the object with the parameter name and additional exception information. /// The object that holds the serialized object data. /// The contextual information about the source or destination. /// /// is . // Token: 0x06001A6F RID: 6767 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001A6F")] [Address(RVA = "0x2BF6830", Offset = "0x2BF5630", VA = "0x182BF6830", Slot = "10")] public override void GetObjectData(SerializationInfo info, StreamingContext context) { } /// Gets the culture identifier that cannot be found. /// The invalid culture identifier. // Token: 0x17000323 RID: 803 // (get) Token: 0x06001A70 RID: 6768 RVA: 0x000116B8 File Offset: 0x0000F8B8 [Token(Token = "0x17000323")] public virtual int? InvalidCultureId { [Token(Token = "0x6001A70")] [Address(RVA = "0x46AA30", Offset = "0x469830", VA = "0x18046AA30", Slot = "12")] get { return null; } } /// Gets the culture name that cannot be found. /// The invalid culture name. // Token: 0x17000324 RID: 804 // (get) Token: 0x06001A71 RID: 6769 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x17000324")] public virtual string InvalidCultureName { [Token(Token = "0x6001A71")] [Address(RVA = "0x44EC40", Offset = "0x44DA40", VA = "0x18044EC40", Slot = "13")] get { return null; } } // Token: 0x17000325 RID: 805 // (get) Token: 0x06001A72 RID: 6770 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x17000325")] private static string DefaultMessage { [Token(Token = "0x6001A72")] [Address(RVA = "0x2BF6B80", Offset = "0x2BF5980", VA = "0x182BF6B80")] get { return null; } } // Token: 0x17000326 RID: 806 // (get) Token: 0x06001A73 RID: 6771 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x17000326")] private string FormatedInvalidCultureId { [Token(Token = "0x6001A73")] [Address(RVA = "0x2BF6BC0", Offset = "0x2BF59C0", VA = "0x182BF6BC0")] get { return null; } } /// Gets the error message that explains the reason for the exception. /// A text string describing the details of the exception. // Token: 0x17000327 RID: 807 // (get) Token: 0x06001A74 RID: 6772 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x17000327")] public override string Message { [Token(Token = "0x6001A74")] [Address(RVA = "0x2BF6CC0", Offset = "0x2BF5AC0", VA = "0x182BF6CC0", Slot = "5")] get { return null; } } // Token: 0x04000E41 RID: 3649 [global::Cpp2IlInjected.FieldOffset(Offset = "0x90")] [Token(Token = "0x4000E41")] private string m_invalidCultureName; // Token: 0x04000E42 RID: 3650 [global::Cpp2IlInjected.FieldOffset(Offset = "0x98")] [Token(Token = "0x4000E42")] private int? m_invalidCultureId; } }