Share via


HttpDelete.HttpErrorHandler Property

 

Gets or sets an activity delegate for processing error responses and attempting to retry.

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

Syntax

[DefaultValueAttribute(null)]
public ActivityFunc<HttpStatusCode, DynamicValue, DynamicValue, bool> HttpErrorHandler {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    set;
}
public:
[DefaultValueAttribute(null)]
property ActivityFunc<HttpStatusCode, DynamicValue^, DynamicValue^, bool>^ HttpErrorHandler {
    [CompilerGeneratedAttribute]
    ActivityFunc<HttpStatusCode, DynamicValue^, DynamicValue^, bool>^ get();
    [CompilerGeneratedAttribute]
    void set(ActivityFunc<HttpStatusCode, DynamicValue^, DynamicValue^, bool>^ value);
}
[<DefaultValueAttribute(null)>]
member HttpErrorHandler : ActivityFunc<HttpStatusCode, DynamicValue, DynamicValue, bool> with get, set
<DefaultValueAttribute(Nothing)>
Public Property HttpErrorHandler As ActivityFunc(Of HttpStatusCode, DynamicValue, DynamicValue, Boolean)

Property Value

Type: System.Activities.ActivityFunc<HttpStatusCode, DynamicValue, DynamicValue, Boolean>

The configured error handler.

See Also

HttpDelete Class
Microsoft.Activities.Messaging Namespace

Return to top