INameObjectCollection Interface
Defines a collection of associated string keys and object values that can be accessed either with the key or with an index.
Assembly: SqlWorkbench.Interfaces (in SqlWorkbench.Interfaces.dll)
| Name | Description | |
|---|---|---|
![]() | Count | (Inherited from ICollection.) |
![]() | IsSynchronized | (Inherited from ICollection.) |
![]() | SyncRoot | (Inherited from ICollection.) |
| Name | Description | |
|---|---|---|
![]() | Add(String^, Object^) | Adds an entry with the specified key and value into the collection. |
![]() | CopyTo(Array^, Int32) | (Inherited from ICollection.) |
![]() | Get(Int32) | Retrieves the value of the specified entry from the instance. |
![]() | Get(String^) | Retrieves the value of the first entry with the specified key from the instance. |
![]() | GetEnumerator() | (Inherited from IEnumerable.) |
![]() | Remove(String^) | Removes the entries with the specified key from the instance. |
![]() | RemoveAt(Int32) | Removes the entry at the specified index of the instance. |
![]() | Set(Int32, Object^) | Sets the value of the entry at the specified index of the instance. |
![]() | Set(String^, Object^) | Sets the value of the first entry with the specified key in the instance, if found; otherwise, adds an entry with the specified key and value into the NameObjectCollection instance. |

