mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
39 lines
1.2 KiB
// ==========================================================================
|
|
// Helper.cs
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex Group
|
|
// All rights reserved.
|
|
// ==========================================================================
|
|
|
|
using System.Reflection;
|
|
|
|
namespace Squidex.Infrastructure.Dispatching
|
|
{
|
|
internal static class Helper
|
|
{
|
|
public static bool HasRightName(MethodInfo method)
|
|
{
|
|
return method.Name == "On";
|
|
}
|
|
|
|
public static bool HasRightReturnType<TOut>(MethodInfo method)
|
|
{
|
|
return method.ReturnType == typeof(TOut);
|
|
}
|
|
|
|
public static bool HasRightParameters<TIn>(MethodInfo method)
|
|
{
|
|
var parameters = method.GetParameters();
|
|
|
|
return parameters.Length == 1 && typeof(TIn).IsAssignableFrom(parameters[0].ParameterType);
|
|
}
|
|
|
|
public static bool HasRightParameters<TIn, TContext>(MethodInfo method)
|
|
{
|
|
var parameters = method.GetParameters();
|
|
|
|
return parameters.Length == 2 && typeof(TIn).IsAssignableFrom(parameters[0].ParameterType) && parameters[1].ParameterType == typeof(TContext);
|
|
}
|
|
}
|
|
}
|