VirtualPathProvider.GetCacheKey(String) Method

Definition

Returns a cache key to use for the specified virtual path.

public:
 virtual System::String ^ GetCacheKey(System::String ^ virtualPath);
public virtual string GetCacheKey (string virtualPath);
abstract member GetCacheKey : string -> string
override this.GetCacheKey : string -> string
Public Overridable Function GetCacheKey (virtualPath As String) As String

Parameters

virtualPath
String

The path to the virtual resource.

Returns

A cache key for the specified virtual resource.

Remarks

Use the GetCacheKey method to provide a custom cache key for virtual resources. If you do not override the GetCacheKey method, the virtual path is used for the cache key.

Notes to Inheritors

Only override the default GetCacheKey(String) method if creating a cache key based on the virtual path will not work for your application.

Applies to