System.Linq.Dynamic.ExtendedExpressionParser.GenerateMethodCall C# (CSharp) Méthode

GenerateMethodCall() protected méthode

protected GenerateMethodCall ( Type type, Expression instance, int errorPos, string id, Lazy argumentList ) : Maybe
type Type
instance System.Linq.Expressions.Expression
errorPos int
id string
argumentList Lazy
Résultat Maybe
		protected override Maybe<Expression> GenerateMethodCall(Type type, Expression instance, int errorPos, string id,
			Lazy<Expression[]> argumentList)
		{
			return GenerateMethodCallImpl(type, instance, errorPos, id, argumentList)
				.OrElse(() => PropagateToNullMethod(type, instance, errorPos, id, argumentList));
		}