ArgumentNullException 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 ArgumentNullException 类的新实例。
重载
ArgumentNullException() |
初始化 ArgumentNullException 类的新实例。 |
ArgumentNullException(String) |
使用导致此异常的参数的名称初始化 ArgumentNullException 类的新实例。 |
ArgumentNullException(SerializationInfo, StreamingContext) |
已过时.
用序列化数据初始化 ArgumentNullException 类的新实例。 |
ArgumentNullException(String, Exception) |
使用指定的错误消息和引发此异常的异常初始化 ArgumentNullException 类的新实例。 |
ArgumentNullException(String, String) |
使用指定的错误消息和导致此异常的参数的名称来初始化 ArgumentNullException 类的实例。 |
ArgumentNullException()
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
初始化 ArgumentNullException 类的新实例。
public:
ArgumentNullException();
public ArgumentNullException ();
Public Sub New ()
注解
此构造函数将 Message 新实例的 属性初始化为描述错误的系统提供的消息,例如“值不能为 null”。此消息考虑了当前系统区域性。
下表显示了 ArgumentNullException 实例的初始属性值。
properties | 值 |
---|---|
InnerException | 空引用(在 Visual Basic 中为 Nothing )。 |
Message | 本地化的错误消息字符串,例如英语的“值不能为 null”。 |
适用于
ArgumentNullException(String)
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
使用导致此异常的参数的名称初始化 ArgumentNullException 类的新实例。
public:
ArgumentNullException(System::String ^ paramName);
public ArgumentNullException (string paramName);
public ArgumentNullException (string? paramName);
new ArgumentNullException : string -> ArgumentNullException
Public Sub New (paramName As String)
参数
- paramName
- String
导致异常的参数的名称。
注解
此构造函数将 Message 新实例的 属性初始化为系统提供的消息,该消息描述错误并包含参数名称。 此消息会考虑当前系统区域性。
此构造函数用 ParamName 参数初始化新实例的 paramName
属性。
paramName
的内容设计为易于理解。
下表显示了 ArgumentNullException 实例的初始属性值。
properties | 值 |
---|---|
InnerException | 空引用(在 Visual Basic 中为 Nothing )。 |
Message | 标识 null 参数的本地化错误消息字符串。 例如,如果 paramName 参数为“arg1”,则英语消息字符串为:在 .NET 5+ 和 .NET Core 上: Value cannot be null. (Parameter name: 'arg1') .NET Framework: Value cannot be null.\r\nParameter name: arg1 |
ParamName | 参数名称字符串。 |
适用于
ArgumentNullException(SerializationInfo, StreamingContext)
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
注意
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
用序列化数据初始化 ArgumentNullException 类的新实例。
protected:
ArgumentNullException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected ArgumentNullException (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 ArgumentNullException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Security.SecurityCritical]
protected ArgumentNullException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new ArgumentNullException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> ArgumentNullException
[<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 ArgumentNullException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> ArgumentNullException
[<System.Security.SecurityCritical>]
new ArgumentNullException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> ArgumentNullException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
参数
- info
- SerializationInfo
承载序列化对象数据的对象。
- context
- StreamingContext
用于描述序列化数据的源或目标的对象。
- 属性
注解
在反序列化期间调用此构造函数以重新构造在流上传输的异常对象。 有关详细信息,请参阅 XML 和 SOAP 序列化。
另请参阅
适用于
ArgumentNullException(String, Exception)
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
使用指定的错误消息和引发此异常的异常初始化 ArgumentNullException 类的新实例。
public:
ArgumentNullException(System::String ^ message, Exception ^ innerException);
public ArgumentNullException (string message, Exception innerException);
public ArgumentNullException (string? message, Exception? innerException);
new ArgumentNullException : string * Exception -> ArgumentNullException
Public Sub New (message As String, innerException As Exception)
参数
- message
- String
说明发生此异常的原因的错误消息。
- innerException
- Exception
导致当前异常的异常;如果未指定内部异常,则是一个 null 引用(在 Visual Basic 中为 Nothing
)。
适用于
ArgumentNullException(String, String)
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
- Source:
- ArgumentNullException.cs
使用指定的错误消息和导致此异常的参数的名称来初始化 ArgumentNullException 类的实例。
public:
ArgumentNullException(System::String ^ paramName, System::String ^ message);
public ArgumentNullException (string paramName, string message);
public ArgumentNullException (string? paramName, string? message);
new ArgumentNullException : string * string -> ArgumentNullException
Public Sub New (paramName As String, message As String)
参数
- paramName
- String
导致异常的参数的名称。
- message
- String
描述错误的消息。
注解
此构造函数使用 参数的值初始化 Message 新实例的 message
属性。
message
参数的内容应为人所理解。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。
此构造函数用 ParamName 参数初始化新实例的 paramName
属性。
paramName
的内容设计为易于理解。
下表显示了 ArgumentNullException 实例的初始属性值。
properties | 值 |
---|---|
InnerException | 空引用(在 Visual Basic 中为 Nothing )。 |
Message | 错误消息字符串。 |
ParamName | 参数名称字符串。 |