با عرض پوزش از تاخیر در پاسخ، اینجا را ببینید:
https://vikingerik.wordpress.com/201...suming-actions

لینک پکیج فوق در Nuget هم موجوده:
https://www.nuget.org/packages/MVC.R...ActionResults/

اگر هم خواستید به سورس اش دسترسی داشته باشید قبل از اینکه CodePlex برای همیشه بسته شود می توانید آرشیو Respository اش رو دانلود کنید:
https://codeplexarchive.blob.core.wi...ingActions.zip

این هم یک مثال از نحوه استفاده اش:
        public ActionResult DownloadAttachment(int? id)
{
if (id == null)
{
ViewBag.Message = "شناسه ضمیمه مشخص نشده است.";
return View("Error");
}

var attachment = db.ArticleAttachments.Find(id);
if (attachment == null)
{
ViewBag.Message = "هیچ ضمیمه ای با این شناسه وجود ندارد.";
return View("Error");
}

string filepath = Server.MapPath(attachment.ArticleAttachmentFileUrl );
return new ResumingFilePathResult(filepath, "application/octet-stream", attachment.ArticleAttachmentOriginalFilename);
}