DispatchedAttribute.FireAndForget Property |
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. The default value is false.
Namespace: PostSharp.Patterns.Threading
Assembly: PostSharp.Patterns.Threading (in PostSharp.Patterns.Threading.dll) Version: 6.5.19.0 (6.5.19.0)
C#
public bool FireAndForget { get; set; }
Property Value
Type: Booleantrue if the target method must be invoked asynchronously, or false if the target method must be invoked synchronously, that is, if the caller must wait for the dispatched method to complete.
Method that have a non-void return type or ref or out parameters cannot be dispatched asynchronously.