1 instantiation of MethodData
System.Data.Services (1)
System\Data\Services\Parsing\RequestQueryParser.cs (1)
2367MethodData methodData = new MethodData(method, method.GetParameters());
17 references to MethodData
System.Data.Services (17)
System\Data\Services\Parsing\RequestQueryParser.cs (17)
525private static MethodData[] FindBestApplicableMethods(MethodData[] applicable, Expression[] args) 529List<MethodData> result = new List<MethodData>(); 530foreach (MethodData method in applicable) 533foreach (MethodData otherMethod in applicable) 799private static bool IsBetterThan(Expression[] args, MethodData m1, MethodData m2) 2362private MethodData[] FindApplicableMethods(IEnumerable<MethodBase> methods, Expression[] args) 2364List<MethodData> result = new List<MethodData>(); 2367MethodData methodData = new MethodData(method, method.GetParameters()); 2384MethodData[] applicable = this.FindApplicableMethods(methods, args); 2397MethodData md = applicable[0]; 2419MethodData nullableMethod = 2436private bool IsApplicable(MethodData method, Expression[] args) 2616/// <summary>Initializes a new <see cref="MethodData"/> instance.</summary>