ConstraintException 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 ConstraintException 類別的新執行個體。
多載
ConstraintException() |
初始化 ConstraintException 類別的新執行個體。 這是無參數建構函式。 |
ConstraintException(String) |
使用指定的字串,初始化 ConstraintException 類別的新執行個體。 |
ConstraintException(SerializationInfo, StreamingContext) |
已淘汰.
使用指定的序列化和資料流內容,初始化 ConstraintException 類別的新執行個體。 |
ConstraintException(String, Exception) |
使用指定的字串和內部例外狀況,初始化 ConstraintException 類別的新執行個體。 |
ConstraintException()
初始化 ConstraintException 類別的新執行個體。 這是無參數建構函式。
public:
ConstraintException();
public ConstraintException ();
Public Sub New ()
適用於
ConstraintException(String)
使用指定的字串,初始化 ConstraintException 類別的新執行個體。
public:
ConstraintException(System::String ^ s);
public ConstraintException (string? s);
public ConstraintException (string s);
new System.Data.ConstraintException : string -> System.Data.ConstraintException
Public Sub New (s As String)
參數
- s
- String
例外狀況擲回時要顯示的字串。
適用於
ConstraintException(SerializationInfo, StreamingContext)
警告
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
使用指定的序列化和資料流內容,初始化 ConstraintException 類別的新執行個體。
protected:
ConstraintException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected ConstraintException (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 ConstraintException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Data.ConstraintException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.ConstraintException
[<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.ConstraintException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.ConstraintException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
參數
- info
- SerializationInfo
序列化或還原序列化物件所需的資料。
- context
- StreamingContext
來源的描述和指定的序列化資料流的目的端。
- 屬性
適用於
ConstraintException(String, Exception)
使用指定的字串和內部例外狀況,初始化 ConstraintException 類別的新執行個體。
public:
ConstraintException(System::String ^ message, Exception ^ innerException);
public ConstraintException (string? message, Exception? innerException);
public ConstraintException (string message, Exception innerException);
new System.Data.ConstraintException : string * Exception -> System.Data.ConstraintException
Public Sub New (message As String, innerException As Exception)
參數
- message
- String
例外狀況擲回時要顯示的字串。
- innerException
- Exception
取得造成目前例外狀況的 Exception
執行個體。