Observable.FromEventPattern<TDelegate, TEventArgs> Method (Action<TDelegate>, Action<TDelegate>)
Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence with the specified add handler and remove handler.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
Public Shared Function FromEventPattern(Of TDelegate, TEventArgs As EventArgs) ( _
addHandler As Action(Of TDelegate), _
removeHandler As Action(Of TDelegate) _
) As IObservable(Of EventPattern(Of TEventArgs))
'Usage
Dim addHandler As Action(Of TDelegate)
Dim removeHandler As Action(Of TDelegate)
Dim returnValue As IObservable(Of EventPattern(Of TEventArgs))
returnValue = Observable.FromEventPattern(addHandler, _
removeHandler)
public static IObservable<EventPattern<TEventArgs>> FromEventPattern<TDelegate, TEventArgs>(
Action<TDelegate> addHandler,
Action<TDelegate> removeHandler
)
where TEventArgs : EventArgs
public:
generic<typename TDelegate, typename TEventArgs>
where TEventArgs : EventArgs
static IObservable<EventPattern<TEventArgs>^>^ FromEventPattern(
Action<TDelegate>^ addHandler,
Action<TDelegate>^ removeHandler
)
static member FromEventPattern :
addHandler:Action<'TDelegate> *
removeHandler:Action<'TDelegate> -> IObservable<EventPattern<'TEventArgs>> when 'TEventArgs : EventArgs
JScript does not support generic types and methods.
Type Parameters
- TDelegate
The type of delegate.
- TEventArgs
The type of event.
Parameters
- addHandler
Type: System.Action<TDelegate>
The action that attaches the given event handler to the underlying .NET event.
- removeHandler
Type: System.Action<TDelegate>
The action that detaches the given event handler from the underlying .NET event.
Return Value
Type: System.IObservable<EventPattern<TEventArgs>>
The observable sequence that contains data representations of invocations of the underlying .NET event.