使用MethodBase
,是否可以获取被调用方法的参数及其值?
具体来说,我正在尝试使用反射来创建缓存键。由于每个方法及其参数列表都是唯一的,我认为将它作为关键是理想的。这就是我正在做的事情:
public List<Company> GetCompanies(string city)
{
string key = GetCacheKey();
var companies = _cachingService.GetCacheItem(key);
if (null == company)
{
companies = _companyRepository.GetCompaniesByCity(city);
AddCacheItem(key, companies);
}
return (List<Company>)companies;
}
public List<Company> GetCompanies(string city, int size)
{
string key = GetCacheKey();
var companies = _cachingService.GetCacheItem(key);
if (null == company)
{
companies = _companyRepository.GetCompaniesByCityAndSize(city, size);
AddCacheItem(key, companies);
}
return (List<Company>)companies;
}
GetCacheKey()
的定义(大致)为:
public string GetCacheKey()
{
StackTrace stackTrace = new StackTrace();
MethodBase methodBase = stackTrace.GetFrame(1).GetMethod();
string name = methodBase.DeclaringType.FullName;
// get values of each parameter and append to a string
string parameterVals = // How can I get the param values?
return name + parameterVals;
}
答案 0 :(得分:2)
为什么要使用反射?在使用GetCacheKey
方法的地方,您可以知道参数的值。你可以指定它们:
public string GetCacheKey(params object[] parameters)
并像这样使用:
public List<Company> GetCompanies(string city)
{
string key = GetCacheKey(city);
...
答案 1 :(得分:0)
这是从方法中获取参数的绝佳示例:
public static string GetParamName(System.Reflection.MethodInfo method, int index)
{
string retVal = string.Empty;
if (method != null && method.GetParameters().Length > index)
retVal = method.GetParameters()[index].Name;
return retVal;
}
答案 2 :(得分:0)
寻找同样的答案吧。除了反射,你可以在PostSharp中编写一个Aspect。这将减少使用反射对性能的影响,并且不会违反任何替代原则。