public class AdcsDbPropertyCollection : IDictionary<string, Object>,
ICollection<KeyValuePair<string, Object>>, IEnumerable<KeyValuePair<string, Object>>,
IEnumerable
Public Class AdcsDbPropertyCollection
Implements IDictionary(Of String, Object),
ICollection(Of KeyValuePair(Of String, Object)), IEnumerable(Of KeyValuePair(Of String, Object)),
IEnumerable
public ref class AdcsDbPropertyCollection : IDictionary<String^, Object^>,
ICollection<KeyValuePair<String^, Object^>>, IEnumerable<KeyValuePair<String^, Object^>>,
IEnumerable
type AdcsDbPropertyCollection =
class
interface IDictionary<string, Object>
interface ICollection<KeyValuePair<string, Object>>
interface IEnumerable<KeyValuePair<string, Object>>
interface IEnumerable
end
AdcsDbPropertyCollection | Initializes a new instance of the AdcsDbPropertyCollection class |
Count | Gets the number of elements contained in the dictionary. |
IsReadOnly | Gets a value indicating whether the dictionary is read-only. |
Item | Gets or sets the value associated with the specified key. |
Keys | Gets a collection containing the keys in the dictionary. |
Values | Gets a collection containing the values in the dictionary. |
Add(KeyValuePairString, Object) | Adds an item to the dictionary. |
Add(String, Object) | Adds the specified key and value to the dictionary. |
Clear | Removes all items from the dictionary. |
Contains | Determines whether the dictionary contains a specific value. |
ContainsKey | Determines whether the dictionary contains the specified key. |
CopyTo | Copies the elements of the dictionary to an Array, starting at a particular Array index. |
Equals | (Inherited from Object) |
Finalize | (Inherited from Object) |
GetEnumerator | Returns an enumerator that iterates through the collection. |
GetHashCode | (Inherited from Object) |
GetType | (Inherited from Object) |
MemberwiseClone | (Inherited from Object) |
Remove(KeyValuePairString, Object) | Removes the first occurrence of a specific object from the dictionary. |
Remove(String) | Removes the value with the specified key from the dictionary. |
ToString | (Inherited from Object) |
TryGetValue | Gets the value associated with the specified key. |