FireAndForget
When the aspect is applied to a void non-async method, this property determines whether
the caller will continue immediately after enqueuing the call to the target method,
without waiting for the method to complete. The default value is false
.
Declaration
[Obsolete("Set ExecutionMode to NonBlocking instead.")]
public bool FireAndForget { get; set; }
Property Value
Type | Description |
---|---|
bool |
|
Remarks
Methods that have a non-void
return type or ref
or out
parameters
cannot be dispatched asynchronously.