CefDictionaryValue MembersXilium.CefGlue

[This is preliminary documentation and is subject to change.]

The CefDictionaryValue type exposes the following members.
Methods

  NameDescription
Public methodClear
Removes all values. Returns true on success.
Public methodCopy
Returns a writable copy of this object. If |exclude_empty_children| is true any empty dictionaries or lists will be excluded from the copy.
Public methodStatic memberCreate
Creates a new object that is not owned by any other object.
Public methodDispose
Releases all resources used by the CefDictionaryValue
Public methodOnlineEquals
Determines whether the specified OnlineObject is equal to the current OnlineObject.
(Inherited from OnlineObject.)
Protected methodFinalize (Overrides OnlineObject Finalize .)
Public methodGetBinary
Returns the value at the specified key as type binary.
Public methodGetBool
Returns the value at the specified key as type bool.
Public methodGetDictionary
Returns the value at the specified key as type dictionary.
Public methodGetDouble
Returns the value at the specified key as type double.
Public methodOnlineGetHashCode
Serves as a hash function for a particular type.
(Inherited from OnlineObject.)
Public methodGetInt
Returns the value at the specified key as type int.
Public methodGetKeys
Reads all keys for this dictionary into the specified vector.
Public methodGetKeyType
Returns the value type for the specified key.
Public methodGetList
Returns the value at the specified key as type list.
Public methodGetString
Returns the value at the specified key as type string.
Public methodOnlineGetType
Gets the OnlineType of the current instance.
(Inherited from OnlineObject.)
Public methodHasKey
Returns true if the current dictionary has a value for the given key.
Protected methodOnlineMemberwiseClone
Creates a shallow copy of the current OnlineObject.
(Inherited from OnlineObject.)
Public methodRemove
Removes the value at the specified key. Returns true is the value was removed successfully.
Public methodSetBinary
Sets the value at the specified key as type binary. Returns true if the value was set successfully. If |value| is currently owned by another object then the value will be copied and the |value| reference will not change. Otherwise, ownership will be transferred to this object and the |value| reference will be invalidated.
Public methodSetBool
Sets the value at the specified key as type bool. Returns true if the value was set successfully.
Public methodSetDictionary
Sets the value at the specified key as type dict. Returns true if the value was set successfully. After calling this method the |value| object will no longer be valid. If |value| is currently owned by another object then the value will be copied and the |value| reference will not change. Otherwise, ownership will be transferred to this object and the |value| reference will be invalidated.
Public methodSetDouble
Sets the value at the specified key as type double. Returns true if the value was set successfully.
Public methodSetInt
Sets the value at the specified key as type int. Returns true if the value was set successfully.
Public methodSetList
Sets the value at the specified key as type list. Returns true if the value was set successfully. After calling this method the |value| object will no longer be valid. If |value| is currently owned by another object then the value will be copied and the |value| reference will not change. Otherwise, ownership will be transferred to this object and the |value| reference will be invalidated.
Public methodSetNull
Sets the value at the specified key as type null. Returns true if the value was set successfully.
Public methodSetString
Sets the value at the specified key as type string. Returns true if the value was set successfully.
Public methodOnlineToString
Returns a OnlineString that represents the current OnlineObject.
(Inherited from OnlineObject.)
Back to Top
Properties

  NameDescription
Public propertyCount
Returns the number of values.
Public propertyIsOwned
Returns true if this object is currently owned by another object.
Public propertyIsReadOnly
Returns true if the values of this object are read-only. Some APIs may expose read-only objects.
Public propertyIsValid
Returns true if this object is valid. Do not call any other methods if this method returns false.
Back to Top
See Also