Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Implementing an Asynchronous Method | Asynchronous Programming and Introduction to Web Services
course content

Зміст курсу

Introduction to .NET with C#

Implementing an Asynchronous MethodImplementing an Asynchronous Method

Important Points

  • A task represents an asynchronous operation;
  • We can use the async keyword to convert a method into an asynchronous method;
  • An asynchronous method always returns a Task object;
  • In order to return data from an asynchronous method, we use the Task<T> as the method's return value, where T is the datatype of the return value;
  • The await keyword waits for an asynchronous task to be performed.
1. What does the async keyword do in C#?
2. What keyword is used to pause a method until an asynchronous operation is complete?

What does the async keyword do in C#?

Виберіть правильну відповідь

What keyword is used to pause a method until an asynchronous operation is complete?

Виберіть правильну відповідь

Все було зрозуміло?

Секція 2. Розділ 2
course content

Зміст курсу

Introduction to .NET with C#

Implementing an Asynchronous MethodImplementing an Asynchronous Method

Important Points

  • A task represents an asynchronous operation;
  • We can use the async keyword to convert a method into an asynchronous method;
  • An asynchronous method always returns a Task object;
  • In order to return data from an asynchronous method, we use the Task<T> as the method's return value, where T is the datatype of the return value;
  • The await keyword waits for an asynchronous task to be performed.
1. What does the async keyword do in C#?
2. What keyword is used to pause a method until an asynchronous operation is complete?

What does the async keyword do in C#?

Виберіть правильну відповідь

What keyword is used to pause a method until an asynchronous operation is complete?

Виберіть правильну відповідь

Все було зрозуміло?

Секція 2. Розділ 2
some-alt