Location in a web server to use for storing cache items.
public Uri CacheVirtualDirectory { get; set; }
The location in a web server to use for storing cache items. Default value is null.
This is an optional property to set if a direct URL to cache item support is required. Usually, this is performed by creating a web virtual directory (in IIS for example) to the file system path value used with CacheDirectory.
GetItemVirtualDirectoryUrl can be used to get a direct URL to any cache item. This is performed using the following:
filePath = CacheVirtualDirectory + "\" + RegionName + "\" ItemName