DataCollectorNotifications 類別
由自訂測試配接器用以引發診斷資料配接器的事件。
繼承階層架構
System.Object
Microsoft.VisualStudio.TestTools.Execution.DataCollectorNotifications
命名空間: Microsoft.VisualStudio.TestTools.Execution
組件: Microsoft.VisualStudio.QualityTools.ExecutionCommon (在 Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll 中)
語法
'宣告
Public MustInherit Class DataCollectorNotifications
public abstract class DataCollectorNotifications
public ref class DataCollectorNotifications abstract
[<AbstractClass>]
type DataCollectorNotifications = class end
public abstract class DataCollectorNotifications
DataCollectorNotifications 型別會公開下列成員。
建構函式
名稱 | 說明 | |
---|---|---|
DataCollectorNotifications | 初始化 DataCollectorNotifications 類別的新執行個體。 |
回頁首
方法
名稱 | 說明 | |
---|---|---|
Equals | 判斷指定的物件是否等於目前物件。 (繼承自 Object)。 | |
Finalize | 允許物件在記憶體回收進行回收之前,嘗試釋放資源並執行其他清除作業。 (繼承自 Object)。 | |
GetHashCode | 做為特定型別的雜湊函式。 (繼承自 Object)。 | |
GetType | 取得目前執行個體的 Type。 (繼承自 Object)。 | |
MemberwiseClone | 建立目前 Object 的淺層複本 (Shallow Copy)。 (繼承自 Object)。 | |
RaiseCustomEvent(CustomNotificationEventArgs) | 使用提供的事件引數來引發自訂事件。 | |
RaiseCustomEvent(CustomNotificationEventArgs, NotificationBroadcastLevel) | 使用提供的事件引數及廣播層級指示,引發自訂事件。 | |
RaiseCustomEventAsync(CustomNotificationEventArgs) | 使用提供的事件引數來非同步引發自訂事件。 | |
RaiseCustomEventAsync(CustomNotificationEventArgs, NotificationBroadcastLevel) | 使用提供的事件引數及廣播層級指示,非同步引發自訂事件。 | |
RaiseCustomEventAsync(CustomNotificationEventArgs, NotificationBroadcastLevel, Object) | 使用提供的事件引數、廣播層級指示和使用者語彙基元,非同步引發自訂事件。 | |
RaiseTestFailedEvent | 引發 TestCaseFailed 事件,以通知診斷資料配接器,測試案例已失敗。 | |
ToString | 傳回表示目前物件的字串。 (繼承自 Object)。 |
回頁首
事件
名稱 | 說明 | |
---|---|---|
CustomEventCompleted | 由測試架構在診斷資料配接器完成處理非同步事件時所引發。 |
回頁首
範例
若要在自訂的測試配接器類別中使用 DataCollectorNotifications 物件,請先將 IDataCollectionAwareTestAdapter 新增至衍生測試配接器的類別宣告。
public class MyTestAdapter : ITestAdapter, IDataCollectionAwareTestAdapter
然後您會在測試配接器程式碼中建立 DataCollectors 屬性,傳回一個 DataCollectorNotifications 物件。
public DataCollectorNotifications DataCollectors { get; set; }
您接著可以使用這個物件引發診斷資料配接器的事件。
DataCollectors.RaiseCustomEvent(
new MyCustomDataEventArgs(),
NotificationBroadCastLevel.All);
執行緒安全
這個型別的任何 Public static (在 Visual Basic 中為 Shared) 成員都具備執行緒安全。不保證任何執行個體成員是安全執行緒。
請參閱
參考
Microsoft.VisualStudio.TestTools.Execution 命名空間
DataCollectorNotifications