ExceptionClassAttribute Class
.NET Framework 2.0
Sets the queuing exception class for the queued class. This class cannot be inherited.
Namespace: System.EnterpriseServices
Assembly: System.EnterpriseServices (in system.enterpriseservices.dll)
Assembly: System.EnterpriseServices (in system.enterpriseservices.dll)
'Declaration <AttributeUsageAttribute(AttributeTargets.Class, Inherited:=True)> _ <ComVisibleAttribute(False)> _ Public NotInheritable Class ExceptionClassAttribute Inherits Attribute 'Usage Dim instance As ExceptionClassAttribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Class, Inherited=true) */ /** @attribute ComVisibleAttribute(false) */ public final class ExceptionClassAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Class, Inherited=true) ComVisibleAttribute(false) public final class ExceptionClassAttribute extends Attribute
For more information about using attributes, see Extending Metadata Using Attributes.
The following code example demonstrates the use of the ExceptionClassAttribute type.
using System; using System.EnterpriseServices; using System.Reflection; // References: // System.EnterpriseServices [ExceptionClass("ExceptionHandler")] public class ExceptionClassAttribute_Ctor_String : ServicedComponent { } [ExceptionClass("ExceptionHandler")] public class ExceptionClassAttribute_Value : ServicedComponent { public void ValueExample() { // Get the ExceptionClassAttribute applied to the class. ExceptionClassAttribute attribute = (ExceptionClassAttribute)Attribute.GetCustomAttribute( this.GetType(), typeof(ExceptionClassAttribute), false); // Display the value of the attribute's Value property. Console.WriteLine("ExceptionClassAttribute.Value: {0}", attribute.Value); } }
import System.*;
import System.EnterpriseServices.*;
import System.Reflection.*;
// References:
// System.EnterpriseServices
/** @attribute ExceptionClass("ExceptionHandler")
*/
public class ExceptionClassAttribute_Ctor_String extends ServicedComponent
{
} //ExceptionClassAttribute_Ctor_String
/** @attribute ExceptionClass("ExceptionHandler")
*/
public class ExceptionClassAttribute_Value extends ServicedComponent
{
public void ValueExample()
{
// Get the ExceptionClassAttribute applied to the class.
ExceptionClassAttribute attribute = (ExceptionClassAttribute)(
Attribute.GetCustomAttribute(this.GetType(),
ExceptionClassAttribute.class.ToType(), false));
// Display the value of the attribute's Value property.
Console.WriteLine("ExceptionClassAttribute.Value: {0}",
attribute.get_Value());
} //ValueExample
} //ExceptionClassAttribute_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.
Community Additions
ADD
Show: