Cef |
public sealed class CefListValue : IDisposable
The CefListValue type exposes the following members.
| Name | Description | |
|---|---|---|
| Count | Returns the number of values. | |
| IsOwned | Returns true if this object is currently owned by another object. | |
| IsReadOnly | Returns true if the values of this object are read-only. Some APIs may expose read-only objects. | |
| IsValid | Returns true if this object is valid. This object may become invalid if the underlying data is owned by another object (e.g. list or dictionary) and that other object is then modified or destroyed. Do not call any other methods if this method returns false. |
| Name | Description | |
|---|---|---|
| Clear | Removes all values. Returns true on success. | |
| Copy | Returns a writable copy of this object. | |
| Create | Creates a new object that is not owned by any other object. | |
| Dispose | Releases all resources used by the CefListValue | |
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | |
| Finalize | (Overrides ObjectFinalize) | |
| GetBinary | Returns the value at the specified index as type binary. The returned value will reference existing data. | |
| GetBool | Returns the value at the specified index as type bool. | |
| GetDictionary | Returns the value at the specified index as type dictionary. The returned value will reference existing data and modifications to the value will modify this object. | |
| GetDouble | Returns the value at the specified index as type double. | |
| GetHashCode | Serves as the default hash function. (Inherited from Object) | |
| GetInt | Returns the value at the specified index as type int. | |
| GetList | Returns the value at the specified index as type list. The returned value will reference existing data and modifications to the value will modify this object. | |
| GetString | Returns the value at the specified index as type string. | |
| GetType | Gets the Type of the current instance. (Inherited from Object) | |
| GetValue | Returns the value at the specified index. For simple types the returned value will copy existing data and modifications to the value will not modify this object. For complex types (binary, dictionary and list) the returned value will reference existing data and modifications to the value will modify this object. | |
| GetValueType | Returns the value type at the specified index. | |
| IsEqual | Returns true if this object and |that| object have an equivalent underlying value but are not necessarily the same object. | |
| IsSame | Returns true if this object and |that| object have the same underlying data. If true modifications to this object will also affect |that| object and vice-versa. | |
| Remove | Removes the value at the specified index. | |
| SetBinary | Sets the value at the specified index 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. | |
| SetBool | Sets the value at the specified index as type bool. Returns true if the value was set successfully. | |
| SetDictionary | Sets the value at the specified index as type dict. 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. | |
| SetDouble | Sets the value at the specified index as type double. Returns true if the value was set successfully. | |
| SetInt | Sets the value at the specified index as type int. Returns true if the value was set successfully. | |
| SetList | Sets the value at the specified index as type list. 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. | |
| SetNull | Sets the value at the specified index as type null. Returns true if the value was set successfully. | |
| SetSize | Sets the number of values. If the number of values is expanded all new value slots will default to type null. Returns true on success. | |
| SetString | Sets the value at the specified index as type string. Returns true if the value was set successfully. | |
| SetValue | Sets the value at the specified index. Returns true if the value was set successfully. If |value| represents simple data then the underlying data will be copied and modifications to |value| will not modify this object. If |value| represents complex data (binary, dictionary or list) then the underlying data will be referenced and modifications to |value| will modify this object. | |
| ToString | Returns a string that represents the current object. (Inherited from Object) |
| Name | Description | |
|---|---|---|
| MethodInvoke |
Calls the object method by name.
(Defined by ObjectEx) | |
| PropertyGet |
Gets the value of the object property by name.
(Defined by ObjectEx) | |
| PropertyGetT |
Gets the value of the object property by name.
(Defined by ObjectEx) | |
| PropertySet |
Sets the value of the object property by name.
(Defined by ObjectEx) |