Class FailAsyncActivityInput
- Namespace
- Temporalio.Client.Interceptors
- Assembly
- Temporalio.dll
public record FailAsyncActivityInput : IEquatable<FailAsyncActivityInput>
- Inheritance
-
FailAsyncActivityInput
- Implements
- Inherited Members
Remarks
WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.
Constructors
FailAsyncActivityInput(Reference, Exception, AsyncActivityFailOptions?)
public FailAsyncActivityInput(AsyncActivityHandle.Reference Activity, Exception Exception, AsyncActivityFailOptions? Options)
Parameters
Activity
AsyncActivityHandle.ReferenceActivity to fail.
Exception
ExceptionException.
Options
AsyncActivityFailOptionsOptions passed in to fail.
Remarks
WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.
Properties
Activity
Activity to fail.
public AsyncActivityHandle.Reference Activity { get; init; }
Property Value
Exception
Exception.
public Exception Exception { get; init; }
Property Value
Options
Options passed in to fail.
public AsyncActivityFailOptions? Options { get; init; }