获取接口参数名带有“abc”的参数的值

public IMethodReturn Invoke(IMethodInvocation input, GetNextInterceptionBehaviorDelegate getNext)

var v1 = "";
var s2 = input.Arguments.ContainsParameter("abc");
if (s2)
{
v1 = input.Arguments["abc"].ToString();
}

原文地址:https://www.cnblogs.com/wdw31210/p/4088964.html