在 ASP.NET vNext 中获取当前 MethodBase
Get current MethodBase in ASP.NET vNext
我正在将一个开源库从常规 .NET 4 客户端配置文件移植到 DNX Core 5.0。有相当多的库更改,属性或方法被移动或完全删除。我查看了 this answer 但它在我的情况下不起作用,因为该方法已被删除。
其中一个问题是我有一段代码调用了 MethodBase.GetCurrentMethod()
。 API 中不再存在此方法。唯一相似的方法是:
public static MethodBase GetMethodFromHandle(RuntimeMethodHandle handle);
public static MethodBase GetMethodFromHandle(RuntimeMethodHandle handle, RuntimeTypeHandle declaringType);
但我不确定 'handle' 是什么。我需要获取 MethodBase 才能访问其参数,然后为 REST API 查询处理它们。这是在 .NET 4 中构建对象的代码:
public static Annotation Annotation(string query = null, string text = null, string type = null, string name = null, string entity = null, int limit = 25, int offset = 0)
{
var search = Help.SearchToString(MethodBase.GetCurrentMethod(), query, text, type, name, entity);
return Help.Find<Annotation>(search, limit, offset, "annotation");
}
然后在这里使用:
public static string SearchToString(MethodBase m, params object[] search)
{
var paras = m.GetParameters();
var result = string.Empty;
for (var i = 0; i < search.Length; i++)
{
if (search[i] != null)
{
if (i == 0)
{
result += search[i] + "%20AND%20";
}
else
{
result += paras[i].Name.ToLower() + ":" + search[i] + "%20AND%20";
}
}
}
return result.LastIndexOf("%20AND%20", StringComparison.Ordinal) > 0
? result.Substring(0, result.LastIndexOf("%20AND%20", StringComparison.Ordinal))
: result;
}
如果我不能轻松地将所述 MethodBase
作为参数传递,我还可以通过什么其他方式访问 SearchToString()
方法中的 MethodBase
对象参数?
假设方法 Annotation
在 class TestClass
中,使用
typeof(TestClass).GetMethod(nameof(Annotation))
我正在将一个开源库从常规 .NET 4 客户端配置文件移植到 DNX Core 5.0。有相当多的库更改,属性或方法被移动或完全删除。我查看了 this answer 但它在我的情况下不起作用,因为该方法已被删除。
其中一个问题是我有一段代码调用了 MethodBase.GetCurrentMethod()
。 API 中不再存在此方法。唯一相似的方法是:
public static MethodBase GetMethodFromHandle(RuntimeMethodHandle handle);
public static MethodBase GetMethodFromHandle(RuntimeMethodHandle handle, RuntimeTypeHandle declaringType);
但我不确定 'handle' 是什么。我需要获取 MethodBase 才能访问其参数,然后为 REST API 查询处理它们。这是在 .NET 4 中构建对象的代码:
public static Annotation Annotation(string query = null, string text = null, string type = null, string name = null, string entity = null, int limit = 25, int offset = 0)
{
var search = Help.SearchToString(MethodBase.GetCurrentMethod(), query, text, type, name, entity);
return Help.Find<Annotation>(search, limit, offset, "annotation");
}
然后在这里使用:
public static string SearchToString(MethodBase m, params object[] search)
{
var paras = m.GetParameters();
var result = string.Empty;
for (var i = 0; i < search.Length; i++)
{
if (search[i] != null)
{
if (i == 0)
{
result += search[i] + "%20AND%20";
}
else
{
result += paras[i].Name.ToLower() + ":" + search[i] + "%20AND%20";
}
}
}
return result.LastIndexOf("%20AND%20", StringComparison.Ordinal) > 0
? result.Substring(0, result.LastIndexOf("%20AND%20", StringComparison.Ordinal))
: result;
}
如果我不能轻松地将所述 MethodBase
作为参数传递,我还可以通过什么其他方式访问 SearchToString()
方法中的 MethodBase
对象参数?
假设方法 Annotation
在 class TestClass
中,使用
typeof(TestClass).GetMethod(nameof(Annotation))