如何查看方法的传递参数?

时间:2017-09-03 12:07:40

标签: c# .net

我有这个方法:

[System.Web.Services.WebMethodAttribute(), System.Web.Script.Services.ScriptMethodAttribute()]
public static string[] GetCompletionList(string prefixText, int count, string contextKey)
{

    //some logic
    return results.ToArray();
}

我需要查看contextKey变量。

所以我尝试在上面的方法中使用这些行:

Response.Write(contextKey); 
Response.End(); 

当我尝试使用上面的行时,我收到此错误:

Compiler Error Message: CS0120: An object reference is required for the non-static field, method, or property 'System.Web.UI.Page.Response.get'

问题是我的方法是静态的,我不能使用Response类。

知道是否有其他方法可以查看prefixText值?

该项目没有解决方案。我用记事本++打开它。

0 个答案:

没有答案