类型' System.UriFormatException'的例外情况发生在System.dll中

时间:2016-05-11 09:44:32

标签: c# asp.net-mvc

我找不到有什么问题,为什么我有System.UriFormatException

string url = Url.Action("SendConfirmationEmail", new { orderid = newOrderDDD.ID.ToString()});
BackgroundJob.Enqueue(() => MyHelpers.CallUrl(url));

这是我使用的帮手

public static void CallUrl(string serviceUrl)
{
    var req = HttpWebRequest.Create(serviceUrl);
    req.GetResponseAsync();
}

那么,我做错了什么?

0 个答案:

没有答案