You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -753,6 +779,11 @@ When running Durable Task workflows in the .NET Isolated model, task failures ar
753
779
754
780
Starting with Microsoft.Azure.Functions.Worker.Extensions.DurableTask [v1.9.0](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.DurableTask/1.9.0), You can extend this behavior by implementing an IExceptionPropertiesProvider (defined in the Microsoft.DurableTask.Worker starting from [v1.16.1](https://www.nuget.org/packages/Microsoft.DurableTask.Worker/1.16.1)package). This provider defines which exception types and which of their properties should be included in the FailureDetails.Properties dictionary.
755
781
782
+
> [!NOTE]
783
+
> - This feature is available in **.NET Isolated** only. Support for Java will be added in a future release.
784
+
> - Make sure you're using **Microsoft.Azure.Functions.Worker.Extensions.DurableTask v1.9.0** or later.
785
+
> - Make sure you're using **Microsoft.DurableTask.Worker v1.16.1** or later.
786
+
756
787
### Implement an Exception Properties Provider
757
788
Implement a custom IExceptionPropertiesProvider to extract and return selected properties for the exceptions you care about. The returned dictionary will be serialized into the Properties field of FailureDetails when a matching exception type is thrown.
758
789
@@ -817,11 +848,6 @@ When an exception occurs that matches your provider’s configuration, the orche
817
848
}
818
849
```
819
850
820
-
> [!NOTE]
821
-
> - This feature is available in **.NET Isolated** only. Support for Java will be added in a future release.
822
-
> - Make sure you're using **Microsoft.Azure.Functions.Worker.Extensions.DurableTask v1.9.0** or later.
823
-
> - Make sure you're using **Microsoft.DurableTask.Worker v1.16.1** or later.
0 commit comments