ExceptionClassAttribute.Value Свойство

Определение

Получает имя класса исключения для проигрывателя, чтобы выполнить активацию и воспроизведение до направления сообщения в очередь невостребованных писем.

public:
 property System::String ^ Value { System::String ^ get(); };
public string Value { get; }
member this.Value : string
Public ReadOnly Property Value As String

Значение свойства

Имя класса исключения для проигрывателя, чтобы выполнить активацию и воспроизведение до направления сообщения в очередь невостребованных писем.

Примеры

В следующем примере кода возвращается значение ExceptionClass свойства атрибута Value .

[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);
    }
}

Применяется к