Partager via


Observer.ToNotifier<, méthode T>

Crée un rappel de notification à partir d’un observateur.

Espace de noms :System.Reactive
Assemblée: System.Reactive (en System.Reactive.dll)

Syntaxe

'Declaration
<ExtensionAttribute> _
Public Shared Function ToNotifier(Of T) ( _
    observer As IObserver(Of T) _
) As Action(Of Notification(Of T))
'Usage
Dim observer As IObserver(Of T)
Dim returnValue As Action(Of Notification(Of T))

returnValue = observer.ToNotifier()
public static Action<Notification<T>> ToNotifier<T>(
    this IObserver<T> observer
)
[ExtensionAttribute]
public:
generic<typename T>
static Action<Notification<T>^>^ ToNotifier(
    IObserver<T>^ observer
)
static member ToNotifier : 
        observer:IObserver<'T> -> Action<Notification<'T>> 
JScript does not support generic types and methods.

Paramètres de type

  • T
    Type d’argument observateur.

Paramètres

Valeur de retour

Type : System.Action<Notification<T>>
Action qui transfère sa notification d’entrée à l’observateur sous-jacent.

Remarque sur l'utilisation

En Visual Basic et C#, vous pouvez appeler cette méthode en tant que méthode instance sur n’importe quel objet de type IObserver<T>. Lorsque vous utilisez la syntaxe des méthodes d'instance pour appeler cette méthode, omettez le premier paramètre. Pour plus d'informations, consultez ou .

Voir aussi

Référence

Classe Observateur

Espace de noms System.Reactive