TaskFailureDetails Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
TaskFailureDetails(TaskFailureDetails) | |
TaskFailureDetails(String, String, String, TaskFailureDetails) |
Record that represents the details of a task failure. |
TaskFailureDetails(TaskFailureDetails)
protected TaskFailureDetails (Microsoft.DurableTask.TaskFailureDetails original);
Protected Sub New (original As TaskFailureDetails)
Parameters
- original
- TaskFailureDetails
Applies to
TaskFailureDetails(String, String, String, TaskFailureDetails)
Record that represents the details of a task failure.
public TaskFailureDetails (string ErrorType, string ErrorMessage, string? StackTrace, Microsoft.DurableTask.TaskFailureDetails? InnerFailure);
new Microsoft.DurableTask.TaskFailureDetails : string * string * string * Microsoft.DurableTask.TaskFailureDetails -> Microsoft.DurableTask.TaskFailureDetails
Public Sub New (ErrorType As String, ErrorMessage As String, StackTrace As String, InnerFailure As TaskFailureDetails)
Parameters
- ErrorType
- String
The error type. For .NET, this is the namespace-qualified exception type name.
- ErrorMessage
- String
A summary description of the failure.
- StackTrace
- String
The stack trace of the failure.
- InnerFailure
- TaskFailureDetails
The inner cause of the task failure.