我找不到有什么问题,为什么我有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();
}
那么,我做错了什么?