Home
last modified time | relevance | path

Searched refs:ExpressionTypeNotInvocable (Results 1 – 5 of 5) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Core/Microsoft/Scripting/Ast/
H A DInvocationExpression.cs197 throw Error.ExpressionTypeNotInvocable(expression.Type); in GetInvokeMethod()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Core/corefx/
H A DSR.cs72 public const string ExpressionTypeNotInvocable = "Expression of type '{0}' cannot be invoked"; field in SR
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Expressions/src/System/Linq/Expressions/
H A DStrings.cs425 …internal static string ExpressionTypeNotInvocable(object p0) => SR.Format(SR.ExpressionTypeNotInvo…
H A DError.cs669 internal static Exception ExpressionTypeNotInvocable(object p0, string paramName) in ExpressionTypeNotInvocable() method in System.Linq.Expressions.Error
671 return new ArgumentException(Strings.ExpressionTypeNotInvocable(p0), paramName); in ExpressionTypeNotInvocable()
H A DInvocationExpression.cs762 throw Error.ExpressionTypeNotInvocable(expression.Type, nameof(expression)); in GetInvokeMethod()