System.Linq.Dynamic.ExpressionParser.GenerateMethodCall C# (CSharp) Method

GenerateMethodCall() protected method

protected GenerateMethodCall ( Type type, Expression instance, int errorPos, string id, Lazy argumentList ) : Maybe
type Type
instance Expression
errorPos int
id string
argumentList Lazy
return Maybe
		protected virtual Maybe<Expression> GenerateMethodCall(Type type, Expression instance, int errorPos, string id,
			Lazy<Expression[]> argumentList)
		{
			return EnumerableMethod(type, instance, id, argumentList)
				.OrElse(() => SelfMethod(type, instance, errorPos, id, argumentList));
		}
ExpressionParser