CreateException<T>.Message Property

 

Gets or sets the exception message.

Namespace:   Microsoft.Activities
Assembly:  Microsoft.Activities (in Microsoft.Activities.dll)

Syntax

[DefaultValueAttribute(null)]
public InArgument<string> Message {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    set;
}
public:
[DefaultValueAttribute(null)]
property InArgument<String^>^ Message {
    [CompilerGeneratedAttribute]
    InArgument<String^>^ get();
    [CompilerGeneratedAttribute]
    void set(InArgument<String^>^ value);
}
[<DefaultValueAttribute(null)>]
member Message : InArgument<string> with get, set
<DefaultValueAttribute(Nothing)>
Public Property Message As InArgument(Of String)

Property Value

Type: System.Activities.InArgument<String>

Returns the exception message.

See Also

CreateException<T> Class
Microsoft.Activities Namespace

Return to top