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