MobileResourceOnCachedResourceChanged Method |
Invoked if the object inthe cache has changed. This instance will not be automatically loaded from the cached copy.
Callers can reload from the cache by calling ReloadAsync().
The event is only raised if StartListeningForChanges() is invoked. Derived classes can override this method.
Namespace: Oracle.Cloud.Mobile.Synchronization.MobileEndpointAssemblies: Oracle.Cloud.Mobile.Synchronization.PCL (in Oracle.Cloud.Mobile.Synchronization.PCL.dll) Version: 16.1.3.1 (16.1.3.1)
Oracle.Cloud.Mobile (in Oracle.Cloud.Mobile.dll) Version: 16.1.3.1 (16.1.3.1)
Syntaxprotected virtual void OnCachedResourceChanged(
bool deleted
)
Protected Overridable Sub OnCachedResourceChanged (
deleted As Boolean
)
protected:
virtual void OnCachedResourceChanged(
bool deleted
)
abstract OnCachedResourceChanged :
deleted : bool -> unit
override OnCachedResourceChanged :
deleted : bool -> unit
Parameters
- deleted
- Type: SystemBoolean
True if the cached copy was deleted or evicted, false otherwise.
See Also