1430 {
1431 CallSite<Action<CallSite, T0, T1, T2, T3, T4, T5, T6, T7>> callSite = (
CallSite<Action<CallSite, T0, T1, T2, T3, T4, T5, T6, T7>>)site;
1432 Action<CallSite, T0, T1, T2, T3, T4, T5, T6, T7> target = callSite.
Target;
1434 Action<CallSite, T0, T1, T2, T3, T4, T5, T6, T7>[] rules;
1435 Action<CallSite, T0, T1, T2, T3, T4, T5, T6, T7>
action;
1436 if ((rules =
CallSiteOps.GetRules(callSite)) !=
null)
1437 {
1438 for (
int i = 0;
i < rules.Length;
i++)
1439 {
1441 if ((
object)
action != target)
1442 {
1443 callSite.Target =
action;
1444 action(site, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
1446 {
1449 return;
1450 }
1452 }
1453 }
1454 }
1457 for (int j = 0; j < rules.Length; j++)
1458 {
1459 action = (callSite.Target = rules[j]);
1460 try
1461 {
1462 action(site, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
1464 {
1466 return;
1467 }
1468 }
1469 finally
1470 {
1472 {
1475 }
1476 }
1478 }
1480 object[] args = new object[8] { arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7 };
1481 while (true)
1482 {
1483 callSite.Target = target;
1484 action = (callSite.Target = callSite.
Binder.BindCore(callSite, args));
1485 try
1486 {
1487 action(site, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
1489 {
1491 break;
1492 }
1493 }
1494 finally
1495 {
1497 {
1499 }
1500 }
1502 }
1503 }
static bool GetMatch(CallSite site)
static void ClearMatch(CallSite site)
void ReleaseMatchmaker(CallSite matchMaker)