目前我有一個byte[]
包含一個圖像文件的所有數據,只是想構建一個HttpPostedFileBase
的實例,以便我可以使用現有的方法,而不是創造一個新的過載之一。如何創建一個HttpPostedFileBase實例(或其繼承類型)
public ActionResult Save(HttpPostedFileBase file)
public ActionResult Save(byte[] data)
{
//Hope I can construct an instance of HttpPostedFileBase here and then
return Save(file);
//instead of writing a lot of similar codes
}
您是否得到了解析存儲在byte []中的文件的答案? Mine保留內容處置等。 – Devela