Represents the collection of the UniValue.
Inheritance Hierarchy
Nemiro.OAuth UniValueCollection
Namespace: Nemiro.OAuth
Assembly: Nemiro.OAuth (in Nemiro.OAuth.dll) Version: 1.9.4.725 (1.9.4.725)
Syntax
The UniValueCollection type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| UniValueCollection |
Initializes a new instance of the UniValueCollection.
| |
| UniValueCollection(UniValue) |
Initializes a new instance of the UniValueCollection with a specified reference to parent.
| |
| UniValueCollection(UniValueCollection) |
Initializes a new instance of the UniValueCollection by other an instance of the UniValueCollection.
| |
| UniValueCollection(SerializationInfo, StreamingContext) |
Initializes a new instance of the UniValueCollection.
|
Methods
| Name | Description | |
|---|---|---|
| Add(KeyValuePair String, UniValue ) |
Adds the specified item to the UniValueCollection.
| |
| Add(String, UniValue) |
Adds the specified key and value to the collection.
| |
| Clear |
Removes all items from the collection.
| |
| Contains |
Determines whether the collection contains a specific value.
| |
| ContainsKey |
Determines whether the collection contains the specified key.
| |
| CopyTo | ||
| Equals |
Determines whether two object instances are equal.
| |
| Finalize | (Inherited from Object.) | |
| GetEnumerator |
Returns an enumerator that iterates through a collection.
| |
| GetHashCode | (Inherited from Object.) | |
| GetObjectData |
Populates a SerializationInfo with the data needed to serialize the target object.
| |
| GetType | (Inherited from Object.) | |
| MemberwiseClone | (Inherited from Object.) | |
| Remove(KeyValuePair String, UniValue ) |
Removes the first occurrence of a specific object from the collection.
| |
| Remove(String) |
Removes the value with the specified key from the collection.
| |
| ToString |
Returns a string that represents the current UniValueCollection.
(Overrides Object ToString .) | |
| TryGetValue |
Gets the value associated with the specified key.
|
Operators
| Name | Description | |
|---|---|---|
| (UniValue to UniValueCollection) |
Returns UniValueCollection instance from UniValue.
|
Properties
| Name | Description | |
|---|---|---|
| Count |
Gets the number of elements contained in the collection.
| |
| IsReadOnly |
Gets a value indicating whether the collection is read-only. Always false.
| |
| Item Int32 |
Gets or sets the element at the specified index.
| |
| Item String |
Gets or sets the value associated with the specified key.
| |
| Items |
Gets or sets items of the collection.
| |
| Keys |
Gets a collection containing the keys in the collection.
| |
| Parent |
The reference to parent.
| |
| Values |
Gets a collection containing the values in the collection.
|
See Also