lauromoura pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=827a3011314bc5e4dc23a05a54f000148609d87c

commit 827a3011314bc5e4dc23a05a54f000148609d87c
Author: Bruno da Silva Belo <brunodasilvab...@gmail.com>
Date:   Fri Oct 25 11:23:08 2019 -0300

    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
---
 src/bindings/mono/efl_mono/GenericModel.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bindings/mono/efl_mono/GenericModel.cs 
b/src/bindings/mono/efl_mono/GenericModel.cs
index 8bfa8ce2f7..cda0647cbc 100644
--- a/src/bindings/mono/efl_mono/GenericModel.cs
+++ b/src/bindings/mono/efl_mono/GenericModel.cs
@@ -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())
            {

-- 


Reply via email to