BuildManager.CreateCachedFile(String) Method

Definition

Creates a cached file.

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

Parameters

fileName
String

The name of the file to create.

Returns

The Stream object for the new file.

Remarks

This method and the ReadCachedFile method enable you to perform caching that persists across application domain restarts in partial-trust environments. It is used by the MVC framework to cache results of the controller lookup.

To cache data, you write to the Stream object that is returned by this method.

Applies to