CultureNotFoundException Class
The exception that is thrown when a method attempts to construct a culture that is not available.
Assembly: mscorlib (in mscorlib.dll)
System.Exception
System.SystemException
System.ArgumentException
System.Globalization.CultureNotFoundException
| Name | Description | |
|---|---|---|
![]() | CultureNotFoundException() | Initializes a new instance of the CultureNotFoundException class with its message string set to a system-supplied message. |
![]() | CultureNotFoundException(SerializationInfo, StreamingContext) | Initializes a new instance of the CultureNotFoundException class using the specified serialization data and context. |
![]() | CultureNotFoundException(String) | Initializes a new instance of the CultureNotFoundException class with the specified error message. |
![]() | CultureNotFoundException(String, Exception) | Initializes a new instance of the CultureNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception. |
![]() | CultureNotFoundException(String, Int32, Exception) | Initializes a new instance of the CultureNotFoundException class with a specified error message, the invalid Culture ID, and a reference to the inner exception that is the cause of this exception. |
![]() | CultureNotFoundException(String, Int32, String) | Initializes a new instance of the CultureNotFoundException class with a specified error message, the invalid Culture ID, and the name of the parameter that is the cause this exception. |
![]() | CultureNotFoundException(String, String) | Initializes a new instance of the CultureNotFoundException class with a specified error message and the name of the parameter that is the cause this exception. |
![]() | CultureNotFoundException(String, String, Exception) | Initializes a new instance of the CultureNotFoundException class with a specified error message, the invalid Culture Name, and a reference to the inner exception that is the cause of this exception. |
![]() | CultureNotFoundException(String, String, String) | Initializes a new instance of the CultureNotFoundException class with a specified error message, the invalid Culture Name, and the name of the parameter that is the cause this exception. |
| Name | Description | |
|---|---|---|
![]() | Data | Gets a collection of key/value pairs that provide additional user-defined information about the exception.(Inherited from Exception.) |
![]() | HelpLink | Gets or sets a link to the help file associated with this exception.(Inherited from Exception.) |
![]() | HResult | Gets or sets HRESULT, a coded numerical value that is assigned to a specific exception.(Inherited from Exception.) |
![]() | InnerException | |
![]() | InvalidCultureId | Gets the culture identifier that cannot be found. |
![]() | InvalidCultureName | Gets the culture name that cannot be found. |
![]() | Message | Gets the error message that explains the reason for the exception.(Overrides ArgumentException.Message.) |
![]() | ParamName | Gets the name of the parameter that causes this exception.(Inherited from ArgumentException.) |
![]() | Source | Gets or sets the name of the application or the object that causes the error.(Inherited from Exception.) |
![]() | StackTrace | Gets a string representation of the immediate frames on the call stack.(Inherited from Exception.) |
![]() | TargetSite | Gets the method that throws the current exception.(Inherited from Exception.) |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetBaseException() | |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetObjectData(SerializationInfo, StreamingContext) | Sets the SerializationInfo object with the parameter name and additional exception information.(Overrides ArgumentException.GetObjectData(SerializationInfo, StreamingContext).) |
![]() | GetType() | Gets the runtime type of the current instance.(Inherited from Exception.) |
![]() | MemberwiseClone() | |
![]() | ToString() | Creates and returns a string representation of the current exception.(Inherited from Exception.) |
| Name | Description | |
|---|---|---|
![]() | SerializeObjectState | Occurs when an exception is serialized to create an exception state object that contains serialized data about the exception.(Inherited from Exception.) |
A CultureNotFoundException exception is thrown whenever the construction of an invalid culture is eventually attempted within a method. Most commonly, this exception is thrown when a call to one of the following methods fails to create or return a culture:
CultureInfo.CultureInfo constructors.
The CultureInfo.CreateSpecificCulture method.
The CultureInfo.GetCultureInfo method.
Warning |
|---|
On Windows 7 and later operating systems, the .NET Framework retrieves culture data from the operating system. The CultureNotFoundException exception is thrown if the operating system is unable to find the culture, and the culture is not a custom culture or a replacement culture. |
If the calling code attempted to instantiate a CultureInfo object by using a culture name, the InvalidCultureName property contains the invalid name, and the HasValue property of the Nullable<'T> object returned by the InvalidCultureId property is false. If the calling code attempted to instantiate a CultureInfo object by using a culture identifier, the Value property of the Nullable<'T> object returned by the InvalidCultureId property contains the invalid identifier, and the value of the InvalidCultureName property is null.
CultureNotFoundException uses the HRESULT COR_E_ARGUMENT, which has the value 0x80070057.
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.




