С учетом следующего кода:
using (var client = new WebClient())
{
string url = string.Concat(someUrl, "SomeControllerName/", currentId, "/WriteLogFile");
var toWrite = DateTime.Now
/* Code to post object to URL goes here e.g. client.UploadValues(url, someNameValueCollectionObject)*/
}
И подпись метода контроллера:
public ActionResult WriteLogFile(DateTime date, int id)
Как я могу заставить первую часть кода передавать объект DateTime этому методу ActionResult?