Observable.ToEventPattern < TEventArgs > 方法
使用 .NET 事件將可觀察序列公開為 物件。
Namespace:System.Reactive.Linq
裝配: System.Reactive.dll) 中的 System.Reactive (
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function ToEventPattern(Of TEventArgs As EventArgs) ( _
source As IObservable(Of EventPattern(Of TEventArgs)) _
) As IEventPatternSource(Of TEventArgs)
'Usage
Dim source As IObservable(Of EventPattern(Of TEventArgs))
Dim returnValue As IEventPatternSource(Of TEventArgs)
returnValue = source.ToEventPattern()
public static IEventPatternSource<TEventArgs> ToEventPattern<TEventArgs>(
this IObservable<EventPattern<TEventArgs>> source
)
where TEventArgs : EventArgs
[ExtensionAttribute]
public:
generic<typename TEventArgs>
where TEventArgs : EventArgs
static IEventPatternSource<TEventArgs>^ ToEventPattern(
IObservable<EventPattern<TEventArgs>^>^ source
)
static member ToEventPattern :
source:IObservable<EventPattern<'TEventArgs>> -> IEventPatternSource<'TEventArgs> when 'TEventArgs : EventArgs
JScript does not support generic types and methods.
類型參數
- TEventArgs
事件的類型。
參數
- source
類型:System.IObservable<EventPattern< TEventArgs>>
可觀察的來源序列。
傳回值
類型:System.Reactive.IEventPatternSource< TEventArgs>
事件來源物件。
使用注意事項
在 Visual Basic 和 C# 中,您可以在IObservable<EventPattern< TEventArgs >> 類型的任何物件上呼叫這個方法作為實例方法。 使用執行個體方法語法呼叫這個方法時,請省略第一個參數。 如需詳細資訊,請參閱 或 。