Udostępnij za pośrednictwem


EventTrackingEnabledAttribute Konstruktory

Definicja

Inicjuje nowe wystąpienie klasy EventTrackingEnabledAttribute.

Przeciążenia

EventTrackingEnabledAttribute()

Inicjuje EventTrackingEnabledAttribute nowe wystąpienie klasy, włączając śledzenie zdarzeń.

EventTrackingEnabledAttribute(Boolean)

Inicjuje EventTrackingEnabledAttribute nowe wystąpienie klasy, opcjonalnie wyłączając śledzenie zdarzeń.

EventTrackingEnabledAttribute()

Inicjuje EventTrackingEnabledAttribute nowe wystąpienie klasy, włączając śledzenie zdarzeń.

public:
 EventTrackingEnabledAttribute();
public EventTrackingEnabledAttribute ();
Public Sub New ()

Przykłady

Poniższy przykład kodu tworzy nowy EventTrackingEnabledAttributeelement .

[EventTrackingEnabled]
public class EventTrackingEnabledAttribute_Ctor : ServicedComponent
{
}
<EventTrackingEnabled()>  _
Public Class EventTrackingEnabledAttribute_Ctor
    Inherits ServicedComponent
End Class

Uwagi

Konstruktor bez parametrów umożliwia śledzenie zdarzeń.

Dotyczy

EventTrackingEnabledAttribute(Boolean)

Inicjuje EventTrackingEnabledAttribute nowe wystąpienie klasy, opcjonalnie wyłączając śledzenie zdarzeń.

public:
 EventTrackingEnabledAttribute(bool val);
public EventTrackingEnabledAttribute (bool val);
new System.EnterpriseServices.EventTrackingEnabledAttribute : bool -> System.EnterpriseServices.EventTrackingEnabledAttribute
Public Sub New (val As Boolean)

Parametry

val
Boolean

true w celu włączenia śledzenia zdarzeń; w przeciwnym razie , false.

Przykłady

Poniższy przykład kodu tworzy nowy EventTrackingEnabledAttributeelement .

[EventTrackingEnabled(false)]
public class EventTrackingEnabledAttribute_Ctor_Bool : ServicedComponent
{
}
<EventTrackingEnabled(False)>  _
Public Class EventTrackingEnabledAttribute_Ctor_Bool
    Inherits ServicedComponent
End Class

Dotyczy