We need to inherit System.Web.Mvc.ActionResult and override the ExecuteResult method
Example
public class SatinderResult<T> :ActionResult
{
public override void ExecuteResult(ContollerContext context)
{
// do something here
}
}
Example
public class SatinderResult<T> :ActionResult
{
public override void ExecuteResult(ContollerContext context)
{
// do something here
}
}
No comments:
Post a Comment