CQRSalad.Dispatching.TaskExtensions.GetTaskResult C# (CSharp) Method

GetTaskResult() static private method

static private GetTaskResult ( this task ) : object
task this
return object
        internal static object GetTaskResult(this Task task)
        {
            //todo type checking
            //todo caching
            return task.GetType().GetProperty("Result").GetValue(task);
        }
    }
TaskExtensions