IKeyedObservableCollection<T> Interface
Provides the base requirements for a collection that has string-based unique keys.
public interface IKeyedObservableCollection<T> : IObservableCollection<T>, IList<T>, ICollection<T>, IEnumerable<T>, IEnumerable where T : class, IKeyedObject
- Type Parameters:
-
T
-The System.Type of item in the collection.
Properties
Item[String]
Gets the T
with the specified key.
[C#] In C#, this property is the indexer for the IKeyedObservableCollection
interface.
T this[string key] { get; }
Parameter | Type | Description |
---|---|---|
key | System.String | The key of the |
Property Value
- T:
The
T
with the specified key.
Methods
Contains(String)
Determines whether a T
with the specified key is in the collection.
bool Contains(string key)
Parameter | Type | Description |
---|---|---|
key | System.String | The key to locate in the collection. |
Returns
- System.Boolean:
true
if aT
with the specified key is found in the collection; otherwise,false
.
IndexOf(String)
Searches for a T
with the specified key and returns the zero-based index of the
first occurrence within the entire collection.
int IndexOf(string key)
Parameter | Type | Description |
---|---|---|
key | System.String | The key to locate in the collection. |
Returns
- System.Int32:
The zero-based index of the first occurrence of a
T
with the specified key within the entire collection, if found; otherwise,-1
.
Remove(String)
Removes the T
with the specified key.
bool Remove(string key)
Parameter | Type | Description |
---|---|---|
key | System.String | The key to locate in the collection. |
Returns
- System.Boolean:
true
if aT
was removed; otherwise,false
.
Inherited Members
- IObservableCollection<T>.ItemAdding
- IObservableCollection<T>.ItemAdded
- IObservableCollection<T>.ItemRemoving
- IObservableCollection<T>.ItemRemoved