Observable.Switch < TSource > 方法
將可觀察序列的可觀察序列轉換成可觀察序列,只從最新的可觀察序列產生值。
Namespace:System.Reactive.Linq
裝配: System.Reactive.dll) 中的 System.Reactive (
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Switch(Of TSource) ( _
sources As IObservable(Of IObservable(Of TSource)) _
) As IObservable(Of TSource)
'Usage
Dim sources As IObservable(Of IObservable(Of TSource))
Dim returnValue As IObservable(Of TSource)
returnValue = sources.Switch()
public static IObservable<TSource> Switch<TSource>(
this IObservable<IObservable<TSource>> sources
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IObservable<TSource>^ Switch(
IObservable<IObservable<TSource>^>^ sources
)
static member Switch :
sources:IObservable<IObservable<'TSource>> -> IObservable<'TSource>
JScript does not support generic types and methods.
類型參數
- TSource
來源的類型。
參數
- sources
類型:System.IObservable<IObservable< TSource>>
內部可觀察序列的可觀察序列。
傳回值
類型:System.IObservable< TSource>
在任何時間點的可觀察序列都會產生最近收到之內部可觀察序列的專案。
使用注意事項
在 Visual Basic 和 C# 中,您可以在IObservable IObservable<< TSource >> 類型的任何物件上呼叫這個方法作為實例方法。 使用執行個體方法語法呼叫這個方法時,請省略第一個參數。 如需詳細資訊,請參閱 或 。