This documentation is for the old version. Go to the latest Graphics Mill docs

FileCacheTimeoutException Class

This exception is thrown when the control cannot get the cache index file until timeout expires.

Namespace: Aurigma.GraphicsMill.AjaxControls
Assembly: Aurigma.GraphicsMill.AjaxControls (in Aurigma.GraphicsMill.AjaxControls.dll)

Syntax

Visual Basic
<SerializableAttribute> _
Public Class FileCacheTimeoutException _
	Inherits Exception _
	Implements ISerializable
C#
[SerializableAttribute]
public class FileCacheTimeoutException : Exception, ISerializable

Remarks

Cache index file is a special file which synchronizes access to the file cache. When a control acesses the file cache, it locks this file and unlocks when it stops using it. It prevents synchronization problems if the file cache is accessed by several threads simultaneously. In this case the second thread retries to lock the index file until timeout expires (10 seconds). If it happens, this exception is thrown.

Inheritance Hierarchy

System.Object
L System.Exception
L Aurigma.GraphicsMill.AjaxControls.FileCacheTimeoutException

See Also

Reference