SafeArrayTypeMismatchException 构造函数
定义
初始化 SafeArrayTypeMismatchException 类的新实例。Initializes a new instance of the SafeArrayTypeMismatchException class.
重载
| SafeArrayTypeMismatchException() |
使用默认值初始化 |
| SafeArrayTypeMismatchException(String) |
使用指定的消息初始化 |
| SafeArrayTypeMismatchException(SerializationInfo, StreamingContext) |
从序列化数据初始化 |
| SafeArrayTypeMismatchException(String, Exception) |
使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 SafeArrayTypeMismatchException 类的新实例。Initializes a new instance of the SafeArrayTypeMismatchException class with a specified error message and a reference to the inner exception that is the cause of this exception. |
SafeArrayTypeMismatchException()
使用默认值初始化 SafeArrayTypeMismatchException 类的新实例。Initializes a new instance of the SafeArrayTypeMismatchException class with default values.
public:
SafeArrayTypeMismatchException();
public SafeArrayTypeMismatchException ();
Public Sub New ()
注解
SafeArrayTypeMismatchException 从 SystemException 继承。SafeArrayTypeMismatchException inherits from SystemException. 此构造函数将设置对象的属性,如下 Exception 表所示。This constructor sets the properties of the Exception object as shown in the following table.
| propertiesProperty | 值Value |
|---|---|
| InnerException | null.null. |
| Message | 已本地化的错误消息字符串。A localized error message string. |
适用于
SafeArrayTypeMismatchException(String)
使用指定的消息初始化 SafeArrayTypeMismatchException 类的新实例。Initializes a new instance of the SafeArrayTypeMismatchException class with the specified message.
public:
SafeArrayTypeMismatchException(System::String ^ message);
public SafeArrayTypeMismatchException (string message);
public SafeArrayTypeMismatchException (string? message);
new System.Runtime.InteropServices.SafeArrayTypeMismatchException : string -> System.Runtime.InteropServices.SafeArrayTypeMismatchException
Public Sub New (message As String)
参数
- message
- String
指示异常原因的消息。The message that indicates the reason for the exception.
注解
SafeArrayTypeMismatchException 从 SystemException 继承。SafeArrayTypeMismatchException inherits from SystemException. 此构造函数将设置对象的属性,如下 Exception 表所示。This constructor sets the properties of the Exception object as shown in the following table.
| propertiesProperty | 值Value |
|---|---|
| InnerException | null.null. |
| Message | message |
适用于
SafeArrayTypeMismatchException(SerializationInfo, StreamingContext)
从序列化数据初始化 SafeArrayTypeMismatchException 类的新实例。Initializes a new instance of the SafeArrayTypeMismatchException class from serialization data.
protected:
SafeArrayTypeMismatchException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected SafeArrayTypeMismatchException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Runtime.InteropServices.SafeArrayTypeMismatchException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Runtime.InteropServices.SafeArrayTypeMismatchException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
参数
- info
- SerializationInfo
承载序列化对象数据的对象。The object that holds the serialized object data.
- context
- StreamingContext
关于来源和目标的上下文信息The contextual information about the source or destination.
例外
info 为 null。info is null.
注解
在反序列化期间调用此构造函数以重新构造在流上传输的异常对象。This constructor is called during deserialization to reconstitute the exception object transmitted over a stream. 有关详细信息,请参阅 System.Runtime.Serialization。For more information, see System.Runtime.Serialization.
SafeArrayTypeMismatchException 从 SystemException 继承。SafeArrayTypeMismatchException inherits from SystemException.
适用于
SafeArrayTypeMismatchException(String, Exception)
使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 SafeArrayTypeMismatchException 类的新实例。Initializes a new instance of the SafeArrayTypeMismatchException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public:
SafeArrayTypeMismatchException(System::String ^ message, Exception ^ inner);
public SafeArrayTypeMismatchException (string message, Exception inner);
public SafeArrayTypeMismatchException (string? message, Exception? inner);
new System.Runtime.InteropServices.SafeArrayTypeMismatchException : string * Exception -> System.Runtime.InteropServices.SafeArrayTypeMismatchException
Public Sub New (message As String, inner As Exception)
参数
- message
- String
解释异常原因的错误消息。The error message that explains the reason for the exception.
- inner
- Exception
导致当前异常的异常。The exception that is the cause of the current exception. 如果 inner 参数不为 null,则当前异常将在处理内部异常的 catch 块中引发。If the inner parameter is not null, the current exception is raised in a catch block that handles the inner exception.
注解
因前一个异常而直接引发的异常应在 InnerException 属性中包含对前一个异常的引用。An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception in the InnerException property. InnerException 属性将返回传递给构造函数的同一值;如果 InnerException 属性不向构造函数提供内部异常值,则返回 null。The InnerException property returns the same value that is passed into the constructor, or null if the InnerException property does not supply the inner exception value to the constructor.
下表显示了 SafeArrayTypeMismatchException 实例的初始属性值。The following table shows the initial property values for an instance of SafeArrayTypeMismatchException.
| PropertyProperty | “值”Value |
|---|---|
| InnerException | 内部异常引用。The inner exception reference. |
| Message | 错误消息字符串。The error message string. |