CultureNotFoundException 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 CultureNotFoundException 类的新实例。
重载
CultureNotFoundException() |
初始化 CultureNotFoundException 类的新实例,将其消息字符串设置为系统提供的消息。 |
CultureNotFoundException(String) |
使用指定的错误消息初始化 CultureNotFoundException 类的新实例。 |
CultureNotFoundException(SerializationInfo, StreamingContext) |
已过时.
使用指定的序列化数据和上下文初始化 CultureNotFoundException 类的新实例。 |
CultureNotFoundException(String, Exception) |
使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 CultureNotFoundException 类的新实例。 |
CultureNotFoundException(String, String) |
使用指定的错误消息和导致此异常的参数的名称来初始化 CultureNotFoundException 类的新实例。 |
CultureNotFoundException(String, Int32, Exception) |
使用指定的错误消息、无效的区域性 ID 和对导致此异常的内部异常的引用来初始化 CultureNotFoundException 类的新实例。 |
CultureNotFoundException(String, Int32, String) |
使用指定的错误消息、无效的区域性 ID 和导致此异常的参数的名称来初始化 CultureNotFoundException 类的新实例。 |
CultureNotFoundException(String, String, Exception) |
使用指定的错误消息、无效的区域性名称和对导致此异常的内部异常的引用来初始化 CultureNotFoundException 类的新实例。 |
CultureNotFoundException(String, String, String) |
使用指定的错误消息、无效的区域性名称和导致此异常的参数的名称来初始化 CultureNotFoundException 类的新实例。 |
注解
CultureNotFoundException 使用 HRESULT COR_E_ARGUMENT,其值0x80070057。
CultureNotFoundException()
- Source:
- CultureNotFoundException.cs
- Source:
- CultureNotFoundException.cs
- Source:
- CultureNotFoundException.cs
初始化 CultureNotFoundException 类的新实例,将其消息字符串设置为系统提供的消息。
public:
CultureNotFoundException();
public CultureNotFoundException ();
Public Sub New ()
注解
CultureNotFoundException 使用 HRESULT COR_E_ARGUMENT,其值0x80070057。
适用于
CultureNotFoundException(String)
- Source:
- CultureNotFoundException.cs
- Source:
- CultureNotFoundException.cs
- Source:
- CultureNotFoundException.cs
使用指定的错误消息初始化 CultureNotFoundException 类的新实例。
public:
CultureNotFoundException(System::String ^ message);
public CultureNotFoundException (string message);
public CultureNotFoundException (string? message);
new System.Globalization.CultureNotFoundException : string -> System.Globalization.CultureNotFoundException
Public Sub New (message As String)
参数
- message
- String
与此异常一起显示的错误消息。
注解
此构造函数使用 参数的值初始化 Message 新实例的 message
属性。 message
参数的内容应为人所理解。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。
CultureNotFoundException 使用 HRESULT COR_E_ARGUMENT,其值0x80070057。
适用于
CultureNotFoundException(SerializationInfo, StreamingContext)
- Source:
- CultureNotFoundException.cs
- Source:
- CultureNotFoundException.cs
- Source:
- CultureNotFoundException.cs
注意
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
使用指定的序列化数据和上下文初始化 CultureNotFoundException 类的新实例。
protected:
CultureNotFoundException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected CultureNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected CultureNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Globalization.CultureNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Globalization.CultureNotFoundException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.Globalization.CultureNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Globalization.CultureNotFoundException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
参数
- info
- SerializationInfo
承载序列化对象数据的对象。
- context
- StreamingContext
关于来源和目标的上下文信息
- 属性
注解
在反序列化期间调用此构造函数以重新构造在流上传输的异常对象。
适用于
CultureNotFoundException(String, Exception)
- Source:
- CultureNotFoundException.cs
- Source:
- CultureNotFoundException.cs
- Source:
- CultureNotFoundException.cs
使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 CultureNotFoundException 类的新实例。
public:
CultureNotFoundException(System::String ^ message, Exception ^ innerException);
public CultureNotFoundException (string message, Exception innerException);
public CultureNotFoundException (string? message, Exception? innerException);
new System.Globalization.CultureNotFoundException : string * Exception -> System.Globalization.CultureNotFoundException
Public Sub New (message As String, innerException As Exception)
参数
- message
- String
与此异常一起显示的错误消息。
- innerException
- Exception
导致当前异常的异常。 如果 innerException
参数不为空引用,则在处理内部异常的 catch
块中引发当前异常。
注解
此构造函数使用 参数的值初始化 Message 新实例的 message
属性。 message
参数的内容应为人所理解。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。
因前一个异常而直接引发的异常应在 InnerException 属性中包含对前一个异常的引用。 InnerException 属性将返回传递给构造函数的同一值;如果 InnerException 属性不向构造函数提供内部异常值,则返回 null
。
适用于
CultureNotFoundException(String, String)
- Source:
- CultureNotFoundException.cs
- Source:
- CultureNotFoundException.cs
- Source:
- CultureNotFoundException.cs
使用指定的错误消息和导致此异常的参数的名称来初始化 CultureNotFoundException 类的新实例。
public:
CultureNotFoundException(System::String ^ paramName, System::String ^ message);
public CultureNotFoundException (string paramName, string message);
public CultureNotFoundException (string? paramName, string? message);
new System.Globalization.CultureNotFoundException : string * string -> System.Globalization.CultureNotFoundException
Public Sub New (paramName As String, message As String)
参数
- paramName
- String
导致当前异常的参数的名称。
- message
- String
与此异常一起显示的错误消息。
注解
此构造函数使用 参数的值初始化 Message 新实例的 message
属性。 message
参数的内容应为人所理解。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。
此构造函数使用 paramName
初始化ParamName新实例的 属性。 paramName
的内容设计为易于理解。
CultureNotFoundException 使用 HRESULT COR_E_ARGUMENT,其值0x80070057。
适用于
CultureNotFoundException(String, Int32, Exception)
- Source:
- CultureNotFoundException.cs
- Source:
- CultureNotFoundException.cs
- Source:
- CultureNotFoundException.cs
使用指定的错误消息、无效的区域性 ID 和对导致此异常的内部异常的引用来初始化 CultureNotFoundException 类的新实例。
public:
CultureNotFoundException(System::String ^ message, int invalidCultureId, Exception ^ innerException);
public CultureNotFoundException (string? message, int invalidCultureId, Exception? innerException);
public CultureNotFoundException (string message, int invalidCultureId, Exception innerException);
new System.Globalization.CultureNotFoundException : string * int * Exception -> System.Globalization.CultureNotFoundException
Public Sub New (message As String, invalidCultureId As Integer, innerException As Exception)
参数
- message
- String
与此异常一起显示的错误消息。
- invalidCultureId
- Int32
找不到的区域性 ID。
- innerException
- Exception
导致当前异常的异常。 如果 innerException
参数不为空引用,则在处理内部异常的 catch
块中引发当前异常。
注解
此构造函数使用 参数的值初始化 Message 新实例的 message
属性。 message
参数的内容应为人所理解。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。
InnerException 属性。 InnerException 属性将返回传递给构造函数的同一值;如果 InnerException 属性不向构造函数提供内部异常值,则返回 null
。
适用于
CultureNotFoundException(String, Int32, String)
- Source:
- CultureNotFoundException.cs
- Source:
- CultureNotFoundException.cs
- Source:
- CultureNotFoundException.cs
使用指定的错误消息、无效的区域性 ID 和导致此异常的参数的名称来初始化 CultureNotFoundException 类的新实例。
public:
CultureNotFoundException(System::String ^ paramName, int invalidCultureId, System::String ^ message);
public CultureNotFoundException (string? paramName, int invalidCultureId, string? message);
public CultureNotFoundException (string paramName, int invalidCultureId, string message);
new System.Globalization.CultureNotFoundException : string * int * string -> System.Globalization.CultureNotFoundException
Public Sub New (paramName As String, invalidCultureId As Integer, message As String)
参数
- paramName
- String
导致当前异常的参数的名称。
- invalidCultureId
- Int32
找不到的区域性 ID。
- message
- String
与此异常一起显示的错误消息。
注解
此构造函数使用 参数的值初始化 Message 新实例的 message
属性。 message
参数的内容应为人所理解。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。
此构造函数使用 paramName
初始化ParamName新实例的 属性。 paramName
的内容设计为易于理解。
CultureNotFoundException 使用 HRESULT COR_E_ARGUMENT,其值0x80070057。
适用于
CultureNotFoundException(String, String, Exception)
- Source:
- CultureNotFoundException.cs
- Source:
- CultureNotFoundException.cs
- Source:
- CultureNotFoundException.cs
使用指定的错误消息、无效的区域性名称和对导致此异常的内部异常的引用来初始化 CultureNotFoundException 类的新实例。
public:
CultureNotFoundException(System::String ^ message, System::String ^ invalidCultureName, Exception ^ innerException);
public CultureNotFoundException (string message, string invalidCultureName, Exception innerException);
public CultureNotFoundException (string? message, string? invalidCultureName, Exception? innerException);
new System.Globalization.CultureNotFoundException : string * string * Exception -> System.Globalization.CultureNotFoundException
Public Sub New (message As String, invalidCultureName As String, innerException As Exception)
参数
- message
- String
与此异常一起显示的错误消息。
- invalidCultureName
- String
找不到的区域性名称。
- innerException
- Exception
导致当前异常的异常。 如果 innerException
参数不为空引用,则在处理内部异常的 catch
块中引发当前异常。
注解
此构造函数使用 参数的值初始化 Message 新实例的 message
属性。 message
参数的内容应为人所理解。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。
InnerException 属性。 InnerException 属性将返回传递给构造函数的同一值;如果 InnerException 属性不向构造函数提供内部异常值,则返回 null
。
适用于
CultureNotFoundException(String, String, String)
- Source:
- CultureNotFoundException.cs
- Source:
- CultureNotFoundException.cs
- Source:
- CultureNotFoundException.cs
使用指定的错误消息、无效的区域性名称和导致此异常的参数的名称来初始化 CultureNotFoundException 类的新实例。
public:
CultureNotFoundException(System::String ^ paramName, System::String ^ invalidCultureName, System::String ^ message);
public CultureNotFoundException (string paramName, string invalidCultureName, string message);
public CultureNotFoundException (string? paramName, string? invalidCultureName, string? message);
new System.Globalization.CultureNotFoundException : string * string * string -> System.Globalization.CultureNotFoundException
Public Sub New (paramName As String, invalidCultureName As String, message As String)
参数
- paramName
- String
导致当前异常的参数的名称。
- invalidCultureName
- String
找不到的区域性名称。
- message
- String
与此异常一起显示的错误消息。
注解
此构造函数使用 参数的值初始化 Message 新实例的 message
属性。 message
参数的内容应为人所理解。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。
此构造函数使用 paramName
初始化ParamName新实例的 属性。 paramName
的内容设计为易于理解。
CultureNotFoundException 使用 HRESULT COR_E_ARGUMENT,其值0x80070057。