MobileObjectPopulateProperties Method |
Extracts property values from this object that can be queried on in the local cache.
Derived classs can control where the property values come from. The default implementation looks for the
values as top-level properties in the underlying JSON object.
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 PopulateProperties(
IDictionary<string, Object> values
)
Protected Overridable Sub PopulateProperties (
values As IDictionary(Of String, Object)
)
protected:
virtual void PopulateProperties(
IDictionary<String^, Object^>^ values
)
abstract PopulateProperties :
values : IDictionary<string, Object> -> unit
override PopulateProperties :
values : IDictionary<string, Object> -> unit
Parameters
- values
- Type: System.Collections.GenericIDictionaryString, Object
A dictionary of values for the proeprties keyed by the property name that are filled in invoking GetPropertyNames().
Omitting a value for a property is acceptable. Values can only have a type of string, int or double.
See Also