SqlTypeException 构造函数

定义

初始化 SqlTypeException 类的新实例。

重载

SqlTypeException()

初始化 SqlTypeException 类的新实例。

SqlTypeException(String)

用指定的错误消息初始化 SqlTypeException 类的新实例。

SqlTypeException(SerializationInfo, StreamingContext)
已过时.

用序列化数据初始化 SqlTypeException 类的新实例。

SqlTypeException(String, Exception)

使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 SqlTypeException 类的新实例。

SqlTypeException()

Source:
SQLUtility.cs
Source:
SQLUtility.cs
Source:
SQLUtility.cs

初始化 SqlTypeException 类的新实例。

public:
 SqlTypeException();
public SqlTypeException ();
Public Sub New ()

适用于

SqlTypeException(String)

Source:
SQLUtility.cs
Source:
SQLUtility.cs
Source:
SQLUtility.cs

用指定的错误消息初始化 SqlTypeException 类的新实例。

public:
 SqlTypeException(System::String ^ message);
public SqlTypeException (string message);
public SqlTypeException (string? message);
new System.Data.SqlTypes.SqlTypeException : string -> System.Data.SqlTypes.SqlTypeException
Public Sub New (message As String)

参数

message
String

解释异常原因的错误消息。

适用于

SqlTypeException(SerializationInfo, StreamingContext)

Source:
SQLUtility.cs
Source:
SQLUtility.cs
Source:
SQLUtility.cs

注意

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

用序列化数据初始化 SqlTypeException 类的新实例。

protected:
 SqlTypeException(System::Runtime::Serialization::SerializationInfo ^ si, System::Runtime::Serialization::StreamingContext sc);
protected SqlTypeException (System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext sc);
[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 SqlTypeException (System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext sc);
new System.Data.SqlTypes.SqlTypeException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.SqlTypes.SqlTypeException
[<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.Data.SqlTypes.SqlTypeException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.SqlTypes.SqlTypeException
Protected Sub New (si As SerializationInfo, sc As StreamingContext)

参数

si
SerializationInfo

承载序列化对象数据的对象。

sc
StreamingContext

关于来源和目标的上下文信息

属性

注解

在反序列化期间调用此构造函数以重新构造在流上传输的异常对象。 有关详细信息,请参阅 XML 和 SOAP 序列化

另请参阅

适用于

SqlTypeException(String, Exception)

Source:
SQLUtility.cs
Source:
SQLUtility.cs
Source:
SQLUtility.cs

使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 SqlTypeException 类的新实例。

public:
 SqlTypeException(System::String ^ message, Exception ^ e);
public SqlTypeException (string message, Exception e);
public SqlTypeException (string? message, Exception? e);
new System.Data.SqlTypes.SqlTypeException : string * Exception -> System.Data.SqlTypes.SqlTypeException
Public Sub New (message As String, e As Exception)

参数

message
String

描述该异常的消息。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。

e
Exception

导致当前异常的异常。 如果 innerException 参数不为 null,则当前异常将在处理内部异常的 catch 块中引发。

适用于