CQRSalad.Dispatching.ReflectionExtensions.IsAsync C# (CSharp) Method

IsAsync() static private method

static private IsAsync ( this method ) : bool
method this
return bool
        internal static bool IsAsync(this MethodInfo method)
        {
            return typeof(Task).IsAssignableFrom(method.ReturnType);
        }