ExceptionClassAttribute Class
.NET Framework 3.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)
[AttributeUsageAttribute(AttributeTargets.Class, Inherited=true)] [ComVisibleAttribute(false)] public sealed class ExceptionClassAttribute : Attribute
/** @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
Not applicable.
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
Community Additions
ADD
Show: