ProceedAsync()
Synonym to Proceed(), but the return type is exposed as a Task<dynamic?>.
Only use this method when the return type of the method or accessor is task-like. Note that
the actual return type of the overridden method or accessor is the one of the overwritten semantic, so it
can be a void Task, a ValueType, or any other type.
Declaration
public static Task<dynamic?> ProceedAsync()Returns
| Type | Description |
|---|---|
| Task<dynamic> |
Remarks
Use this method in specialized async templates (e.g., OverrideAsyncMethod())
to enable await usage in your template code and avoid automatic awaiting by the default template.