EventTrackingEnabledAttribute 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 EventTrackingEnabledAttribute 類別的新執行個體。
多載
EventTrackingEnabledAttribute() |
啟用事件追蹤,來初始化 EventTrackingEnabledAttribute 類別的新執行個體。 |
EventTrackingEnabledAttribute(Boolean) |
選擇性停用事件追蹤,來初始化 EventTrackingEnabledAttribute 類別的新執行個體。 |
EventTrackingEnabledAttribute()
啟用事件追蹤,來初始化 EventTrackingEnabledAttribute 類別的新執行個體。
public:
EventTrackingEnabledAttribute();
public EventTrackingEnabledAttribute ();
Public Sub New ()
範例
下列程式代碼範例會建立新的 EventTrackingEnabledAttribute。
[EventTrackingEnabled]
public class EventTrackingEnabledAttribute_Ctor : ServicedComponent
{
}
<EventTrackingEnabled()> _
Public Class EventTrackingEnabledAttribute_Ctor
Inherits ServicedComponent
End Class
備註
無參數建構函式會啟用事件追蹤。
適用於
EventTrackingEnabledAttribute(Boolean)
選擇性停用事件追蹤,來初始化 EventTrackingEnabledAttribute 類別的新執行個體。
public:
EventTrackingEnabledAttribute(bool val);
public EventTrackingEnabledAttribute (bool val);
new System.EnterpriseServices.EventTrackingEnabledAttribute : bool -> System.EnterpriseServices.EventTrackingEnabledAttribute
Public Sub New (val As Boolean)
參數
- val
- Boolean
若要啟用事件追蹤,則為 true
;否則為 false
。
範例
下列程式代碼範例會建立新的 EventTrackingEnabledAttribute。
[EventTrackingEnabled(false)]
public class EventTrackingEnabledAttribute_Ctor_Bool : ServicedComponent
{
}
<EventTrackingEnabled(False)> _
Public Class EventTrackingEnabledAttribute_Ctor_Bool
Inherits ServicedComponent
End Class