UpdateException 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 UpdateException的新實例。
多載
UpdateException() |
初始化 UpdateException的新實例。 |
UpdateException(String) |
使用特製化錯誤訊息,初始化 UpdateException 的新實例。 |
UpdateException(SerializationInfo, StreamingContext) |
使用串行化數據,初始化 UpdateException 的新實例。 |
UpdateException(String, Exception) |
初始化 UpdateException 類別的新實例,這個實例使用指定的錯誤訊息,以及造成這個例外狀況之內部例外狀況的參考。 |
UpdateException(String, Exception, IEnumerable<ObjectStateEntry>) |
初始化 UpdateException 類別的新實例,這個實例使用指定的錯誤訊息、內部例外狀況的參考,以及 ObjectStateEntry 物件的可列舉集合。 |
備註
如需如何在程式代碼中處理例外狀況的詳細資訊,請參閱 Exception。
UpdateException()
初始化 UpdateException的新實例。
public:
UpdateException();
public UpdateException ();
Public Sub New ()
備註
如需如何在程式代碼中處理例外狀況的詳細資訊,請參閱 Exception。
適用於
UpdateException(String)
使用特製化錯誤訊息,初始化 UpdateException 的新實例。
public:
UpdateException(System::String ^ message);
public UpdateException (string message);
new System.Data.UpdateException : string -> System.Data.UpdateException
Public Sub New (message As String)
參數
- message
- String
描述錯誤的訊息。
備註
如需如何在程式代碼中處理例外狀況的詳細資訊,請參閱 Exception。
適用於
UpdateException(SerializationInfo, StreamingContext)
使用串行化數據,初始化 UpdateException 的新實例。
protected:
UpdateException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected UpdateException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Data.UpdateException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.UpdateException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
參數
- info
- SerializationInfo
保留所擲回例外狀況之串行化對象數據的 SerializationInfo。
- context
- StreamingContext
包含來源或目的地相關信息 StreamingContext。
備註
如需如何在程式代碼中處理例外狀況的詳細資訊,請參閱 Exception。
適用於
UpdateException(String, Exception)
初始化 UpdateException 類別的新實例,這個實例使用指定的錯誤訊息,以及造成這個例外狀況之內部例外狀況的參考。
public:
UpdateException(System::String ^ message, Exception ^ innerException);
public UpdateException (string message, Exception innerException);
new System.Data.UpdateException : string * Exception -> System.Data.UpdateException
Public Sub New (message As String, innerException As Exception)
參數
- message
- String
說明例外狀況原因的錯誤訊息。
- innerException
- Exception
如果未指定任何內部例外狀況,則為目前例外狀況的例外狀況,或 Null 參考 (Nothing
在 Visual Basic 中為 。
備註
如需如何在程式代碼中處理例外狀況的詳細資訊,請參閱 Exception。
適用於
UpdateException(String, Exception, IEnumerable<ObjectStateEntry>)
初始化 UpdateException 類別的新實例,這個實例使用指定的錯誤訊息、內部例外狀況的參考,以及 ObjectStateEntry 物件的可列舉集合。
public:
UpdateException(System::String ^ message, Exception ^ innerException, System::Collections::Generic::IEnumerable<System::Data::Objects::ObjectStateEntry ^> ^ stateEntries);
public UpdateException (string message, Exception innerException, System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectStateEntry> stateEntries);
new System.Data.UpdateException : string * Exception * seq<System.Data.Objects.ObjectStateEntry> -> System.Data.UpdateException
Public Sub New (message As String, innerException As Exception, stateEntries As IEnumerable(Of ObjectStateEntry))
參數
- message
- String
說明例外狀況原因的錯誤訊息。
- innerException
- Exception
如果未指定任何內部例外狀況,則為目前例外狀況的例外狀況,或 Null 參考 (Nothing
在 Visual Basic 中為 。
- stateEntries
- IEnumerable<ObjectStateEntry>
ObjectStateEntry 物件的集合。
備註
如需如何在程式代碼中處理例外狀況的詳細資訊,請參閱 Exception。