FileCache BufferAccessTimeout Property Nemiro.Data.dll
Waiting time gain access to the buffer.

Namespace: Nemiro.Data.Caching
Assembly: Nemiro.Data (in Nemiro.Data.dll) Version: 2.11.4.126 (2.11.4.126)
Syntax

public TimeSpan BufferAccessTimeout { get; set; }

Property Value

Type: TimeSpan
Default value is Zero.
Remarks

Minimal 100 milliseconds.

At the time of waiting, the current thread can be blocked for 100 milliseconds.

Examples

var fileCache = new Nemiro.Data.Caching.FileCache();
fileCache.BufferAccessTimeout = new TimeSpan(0, 0, 1); // 1 second
See Also