|
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.205-beta+5ef4169f3b1079d8b163dd363614f656bd140924
Syntax public 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
BooleanRemarks
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