|
InterprocessCacheReloadOnChange Property
|
Gets or sets flag that enables system to monitor for changes in
FileName and automatically reload
FileData.
Namespace: GSF.IOAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.258-beta+f8b6aa3dbfe0b4cc2b0b0760dd5d2a3dd4f59d09
Syntaxpublic bool ReloadOnChange { get; set; }Public Property ReloadOnChange As Boolean
Get
Set
public:
property bool ReloadOnChange {
bool get ();
void set (bool value);
}member ReloadOnChange : bool with get, set
function get_ReloadOnChange();
function set_ReloadOnChange(value);
View SourceProperty Value
Boolean
Remarks
Use extreme caution when enabling this property - it will be critical to dispose of this class when this property is set to true
since it will create a file watcher that attaches to an event referenced by this class using pinned memory, as a result, this class
will not get garbage collected until this class is disposed thus detaching the associated event.
See Also