EventTrackingEnabledAttribute Class
.NET Framework 2.0
Enables event tracking for a component. This class cannot be inherited.
Namespace: System.EnterpriseServices
Assembly: System.EnterpriseServices (in system.enterpriseservices.dll)
Assembly: System.EnterpriseServices (in system.enterpriseservices.dll)
[AttributeUsageAttribute(AttributeTargets.Class, Inherited=true)] [ComVisibleAttribute(false)] public sealed class EventTrackingEnabledAttribute : Attribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Class, Inherited=true) */ /** @attribute ComVisibleAttribute(false) */ public final class EventTrackingEnabledAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Class, Inherited=true) ComVisibleAttribute(false) public final class EventTrackingEnabledAttribute extends Attribute
For more information about using attributes, see Extending Metadata Using Attributes.
The following code example demonstrates the use of the EventTrackingEnabledAttribute type.
using System; using System.EnterpriseServices; using System.Reflection; // References: // System.EnterpriseServices [EventTrackingEnabled] public class EventTrackingEnabledAttribute_Ctor : ServicedComponent { } [EventTrackingEnabled(false)] public class EventTrackingEnabledAttribute_Ctor_Bool : ServicedComponent { } [EventTrackingEnabled(false)] public class EventTrackingEnabledAttribute_Value : ServicedComponent { public void ValueExample() { // Get the EventTrackingEnabledAttribute applied to the class. EventTrackingEnabledAttribute attribute = (EventTrackingEnabledAttribute)Attribute.GetCustomAttribute( this.GetType(), typeof(EventTrackingEnabledAttribute), false); // Display the value of the attribute's Value property. Console.WriteLine("EventTrackingEnabledAttribute.Value: {0}", attribute.Value); } }
import System.*;
import System.EnterpriseServices.*;
import System.Reflection.*;
// References:
// System.EnterpriseServices
/** @attribute EventTrackingEnabled()
*/
public class EventTrackingEnabledAttribute_Ctor extends ServicedComponent
{
} //EventTrackingEnabledAttribute_Ctor
/** @attribute EventTrackingEnabled(false)
*/
public class EventTrackingEnabledAttribute_Ctor_Bool extends ServicedComponent
{
} //EventTrackingEnabledAttribute_Ctor_Bool
/** @attribute EventTrackingEnabled(false)
*/
public class EventTrackingEnabledAttribute_Value extends ServicedComponent
{
public void ValueExample()
{
// Get the EventTrackingEnabledAttribute applied to the class.
EventTrackingEnabledAttribute attribute =
(EventTrackingEnabledAttribute)(Attribute.GetCustomAttribute(
this.GetType(), EventTrackingEnabledAttribute.class.ToType(),
false));
// Display the value of the attribute's Value property.
Console.WriteLine("EventTrackingEnabledAttribute.Value: {0}",
System.Convert.ToString(attribute.get_Value()));
} //ValueExample
} //EventTrackingEnabledAttribute_Value
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.