ExceptionClassAttribute(String) 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 ExceptionClassAttribute 類別的新執行個體。
public:
ExceptionClassAttribute(System::String ^ name);
public ExceptionClassAttribute (string name);
new System.EnterpriseServices.ExceptionClassAttribute : string -> System.EnterpriseServices.ExceptionClassAttribute
Public Sub New (name As String)
參數
- name
- String
例外狀況類別名稱,讓播放程式可以在訊息傳送到無法寄出的信件佇列之前啟動並播放。
範例
下列程式代碼範例會建立新的 ExceptionClassAttribute。
[ExceptionClass("ExceptionHandler")]
public class ExceptionClassAttribute_Ctor_String : ServicedComponent
{
}