You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Methods that return tasks can be named with the suffix Async to indicate that they can used in asynchronous calls and their results can be awaited. In contrast, methods for synchronous use cannot be awaited. Therefore, they should not be suffixed with Async.
The text was updated successfully, but these errors were encountered:
Methods that return tasks can be named with the suffix
Async
to indicate that they can used in asynchronous calls and their results can be awaited. In contrast, methods for synchronous use cannot be awaited. Therefore, they should not be suffixed withAsync
.The text was updated successfully, but these errors were encountered: