Interface IGroupedObservable<TKey, TElement>
Represents an observable sequence of elements that have a common key.
Inherited Members
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Interfaces.dll
Syntax
public interface IGroupedObservable<out TKey, out TElement> : IObservable<TElement>
Type Parameters
Name | Description |
---|---|
TKey | The type of the key shared by all elements in the group. This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. |
TElement | The type of the elements in the group. This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. |
Properties
| Improve this Doc View SourceKey
Gets the common key.
Declaration
TKey Key { get; }
Property Value
Type | Description |
---|---|
TKey |