EventTrackingEnabledAttribute Class
.NET Framework 3.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
Not applicable.
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
Community Additions
ADD
Show: