HttpCachePolicy.SetNoServerCaching Method

Definition

Stops all origin-server caching for the current response.

public:
 void SetNoServerCaching();
public void SetNoServerCaching ();
member this.SetNoServerCaching : unit -> unit
Public Sub SetNoServerCaching ()

Examples

The following code example demonstrates how to disable output caching for the remainder of the response.

Response.Cache.SetNoServerCaching();
Response.Cache.SetNoServerCaching()

Remarks

Explicitly denies caching of the document on the origin-server. Once set, all requests for the document are fully processed. When this method is invoked, caching cannot be re-enabled for the current response.

SetNoServerCaching is introduced in the .NET Framework version 3.5. For more information, see Versions and Dependencies.

Applies to