UniValueCollection ClassNemiro.OAuth
Represents the collection of the UniValue.
Inheritance Hierarchy

System Object
  Nemiro.OAuth UniValueCollection

Namespace: Nemiro.OAuth
Assembly: Nemiro.OAuth (in Nemiro.OAuth.dll) Version: 1.9.4.725 (1.9.4.725)
Syntax

[SerializableAttribute]
public class UniValueCollection : IDictionary<string, UniValue>, 
	ICollection<KeyValuePair<string, UniValue>>, IEnumerable<KeyValuePair<string, UniValue>>, 
	IEnumerable, ISerializable

The UniValueCollection type exposes the following members.

Constructors

  NameDescription
Public methodUniValueCollection 
Initializes a new instance of the UniValueCollection.
Public methodUniValueCollection(UniValue)
Initializes a new instance of the UniValueCollection with a specified reference to parent.
Public methodUniValueCollection(UniValueCollection)
Initializes a new instance of the UniValueCollection by other an instance of the UniValueCollection.
Protected methodUniValueCollection(SerializationInfo, StreamingContext)
Initializes a new instance of the UniValueCollection.
Top
Methods

  NameDescription
Public methodAdd(KeyValuePair String, UniValue )
Adds the specified item to the UniValueCollection.
Public methodAdd(String, UniValue)
Adds the specified key and value to the collection.
Public methodClear
Removes all items from the collection.
Public methodContains
Determines whether the collection contains a specific value.
Public methodContainsKey
Determines whether the collection contains the specified key.
Public methodCopyTo
[Is not implemented] Copies the elements of the collection to an Array, starting at a particular Array index.
Public methodEquals
Determines whether two object instances are equal.
Protected methodFinalize (Inherited from Object.)
Public methodGetEnumerator
Returns an enumerator that iterates through a collection.
Public methodGetHashCode (Inherited from Object.)
Public methodGetObjectData
Populates a SerializationInfo with the data needed to serialize the target object.
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodRemove(KeyValuePair String, UniValue )
Removes the first occurrence of a specific object from the collection.
Public methodRemove(String)
Removes the value with the specified key from the collection.
Public methodToString
Returns a string that represents the current UniValueCollection.
(Overrides Object ToString .)
Public methodTryGetValue
Gets the value associated with the specified key.
Top
Operators

  NameDescription
Public operatorStatic member (UniValue to UniValueCollection)
Returns UniValueCollection instance from UniValue.
Top
Properties

  NameDescription
Public propertyCount
Gets the number of elements contained in the collection.
Public propertyIsReadOnly
Gets a value indicating whether the collection is read-only. Always false.
Public propertyItem Int32 
Gets or sets the element at the specified index.
Public propertyItem String 
Gets or sets the value associated with the specified key.
Public propertyItems
Gets or sets items of the collection.
Public propertyKeys
Gets a collection containing the keys in the collection.
Public propertyParent
The reference to parent.
Public propertyValues
Gets a collection containing the values in the collection.
Top
See Also