When subscribing to event in a controller, is there a need to unsubscribe? would not unsubscribing cause memory leaks? Why / why not?
[HttpPost]
public JsonResult Process(string data)
{
DataProcessor.Notify += (sender, args) =>
{
result = JsonConvert.SerializeObject(args);
};
.. // do other work
return Json(result );
}