Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Include Protected Members
Include Inherited Members
Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
Name | Description | |
---|---|---|
![]() ![]() |
FromEventPattern<TEventArgs>(Action<EventHandler<TEventArgs>>, Action<EventHandler<TEventArgs>>) | Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence with the specified add handler and remove handler. |
![]() ![]() |
FromEventPattern(Action<EventHandler>, Action<EventHandler>) | Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence with a specified add handler and remove handler. |
![]() ![]() |
FromEventPattern<TDelegate, TEventArgs>(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. |
![]() ![]() |
FromEventPattern(Object, String) | Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence, using reflection to find an instance event. |
![]() ![]() |
FromEventPattern<TEventArgs>(Object, String) | Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence, using reflection to find an instance event. |
![]() ![]() |
FromEventPattern(Type, String) | Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence, using reflection to find a static event. |
![]() ![]() |
FromEventPattern<TEventArgs>(Type, String) | Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence, using reflection to find a static event. |
![]() ![]() |
FromEventPattern<TDelegate, TEventArgs>(Func<EventHandler<TEventArgs>, TDelegate>, Action<TDelegate>, Action<TDelegate>) | Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence with the specified conversion, add handler and remove handler. |
Top