csharp: Calling ConfigureAwait on tasks GM.

Summary: ref T8424

Reviewers: lauromoura, felipealmeida, YOhoho, segfaultxavi

Reviewed By: lauromoura

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Maniphest Tasks: T8424

Differential Revision: https://phab.enlightenment.org/D10497
This commit is contained in:
Bruno da Silva Belo 2019-10-25 11:23:08 -03:00 committed by Mike Blumenkrantz
parent a3234610a9
commit d77f0c8c1e
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ public class GenericModel<T> : Efl.Object, Efl.IModel
/// <returns>Token to notify the async operation of external request to cancel.</returns>
async public System.Threading.Tasks.Task<T> GetAtAsync(uint index)
{
using (Eina.Value v = await GetChildrenSliceAsync(index, 1))
using (Eina.Value v = await GetChildrenSliceAsync(index, 1).ConfigureAwait(false))
{
if (v.GetValueType().IsContainer())
{