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