共用方式為


BuildManager.ReadCachedFile(String) 方法

定義

讀取快取的檔案。

public:
 static System::IO::Stream ^ ReadCachedFile(System::String ^ fileName);
public static System.IO.Stream ReadCachedFile (string fileName);
static member ReadCachedFile : string -> System.IO.Stream
Public Shared Function ReadCachedFile (fileName As String) As Stream

參數

fileName
String

要讀取的檔案名稱。

傳回

檔案的 Stream 物件,如果檔案不存在,則為 null

備註

此方法和 CreateCachedFile 方法可讓您在部分信任環境中執行跨應用程式域重新開機的快取。 MVC 架構會使用它來快取控制器查閱的結果。

若要擷取快取的資料,您可以從這個方法傳回的物件讀取 Stream

適用於