我很想知道如何构建signalR中心内的动作的完整路径。我的中心有代码:
public string GetUpdateUrl(string identifier)
{
var helper = new System.Web.Mvc.UrlHelper(HttpContext.Current.Request.RequestContext);
var result = String.Empty;
try
{
result = helper.Action("Download", "Agent", identifier);
}
catch (Exception e)
{
var t = e;
}
return result;
}
我想要的只是返回完整的网址(例如example.com/Conteroller/Action?identifier=some_code)。
在这里下载动作
public ActionResult Download(string identifier)
{
//return download
}
但是我收到了错误。
在此上下文中无法获得响应。