// Copyright (c) All contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Linq.Expressions;
using System.Reflection;
namespace MessagePack.Internal
{
internal static class ExpressionUtility
{
private static MethodInfo GetMethodInfoCore(LambdaExpression expression)
{
if (expression == null)
{
throw new ArgumentNullException("expression");
}
return (expression.Body as MethodCallExpression).Method;
}
///
/// Get MethodInfo from Expression for Static(with result) method.
///
public static MethodInfo GetMethodInfo(Expression> expression)
{
return GetMethodInfoCore(expression);
}
///
/// Get MethodInfo from Expression for Static(void) method.
///
public static MethodInfo GetMethodInfo(Expression expression)
{
return GetMethodInfoCore(expression);
}
///
/// Get MethodInfo from Expression for Instance(with result) method.
///
public static MethodInfo GetMethodInfo(Expression> expression)
{
return GetMethodInfoCore(expression);
}
///
/// Get MethodInfo from Expression for Instance(void) method.
///
public static MethodInfo GetMethodInfo(Expression> expression)
{
return GetMethodInfoCore(expression);
}
// WithArgument(for ref, out) helper
///
/// Get MethodInfo from Expression for Instance(with result) method.
///
public static MethodInfo GetMethodInfo(Expression> expression)
{
return GetMethodInfoCore(expression);
}
private static MemberInfo GetMemberInfoCore(Expression source)
{
if (source == null)
{
throw new ArgumentNullException("source");
}
var memberExpression = source.Body as MemberExpression;
return memberExpression.Member;
}
public static PropertyInfo GetPropertyInfo(Expression> expression)
{
return GetMemberInfoCore(expression) as PropertyInfo;
}
public static FieldInfo GetFieldInfo(Expression> expression)
{
return GetMemberInfoCore(expression) as FieldInfo;
}
}
}