ChangeToken.OnChange Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
OnChange(Func<IChangeToken>, Action) |
Inscrit l’action |
OnChange<TState>(Func<IChangeToken>, Action<TState>, TState) |
Inscrit l’action |
OnChange(Func<IChangeToken>, Action)
Inscrit l’action changeTokenConsumer
à appeler chaque fois que le jeton produit change.
public:
static IDisposable ^ OnChange(Func<Microsoft::Extensions::Primitives::IChangeToken ^> ^ changeTokenProducer, Action ^ changeTokenConsumer);
public static IDisposable OnChange (Func<Microsoft.Extensions.Primitives.IChangeToken> changeTokenProducer, Action changeTokenConsumer);
public static IDisposable OnChange (Func<Microsoft.Extensions.Primitives.IChangeToken?> changeTokenProducer, Action changeTokenConsumer);
static member OnChange : Func<Microsoft.Extensions.Primitives.IChangeToken> * Action -> IDisposable
Public Shared Function OnChange (changeTokenProducer As Func(Of IChangeToken), changeTokenConsumer As Action) As IDisposable
Paramètres
- changeTokenProducer
- Func<IChangeToken>
Produit le jeton de modification.
- changeTokenConsumer
- Action
Action appelée quand le jeton change.
Retours
S’applique à
OnChange<TState>(Func<IChangeToken>, Action<TState>, TState)
Inscrit l’action changeTokenConsumer
à appeler chaque fois que le jeton produit change.
public:
generic <typename TState>
static IDisposable ^ OnChange(Func<Microsoft::Extensions::Primitives::IChangeToken ^> ^ changeTokenProducer, Action<TState> ^ changeTokenConsumer, TState state);
public static IDisposable OnChange<TState> (Func<Microsoft.Extensions.Primitives.IChangeToken> changeTokenProducer, Action<TState> changeTokenConsumer, TState state);
public static IDisposable OnChange<TState> (Func<Microsoft.Extensions.Primitives.IChangeToken?> changeTokenProducer, Action<TState> changeTokenConsumer, TState state);
static member OnChange : Func<Microsoft.Extensions.Primitives.IChangeToken> * Action<'State> * 'State -> IDisposable
Public Shared Function OnChange(Of TState) (changeTokenProducer As Func(Of IChangeToken), changeTokenConsumer As Action(Of TState), state As TState) As IDisposable
Paramètres de type
- TState
Type de l’état de l’action changeTokenConsumer
.
Paramètres
- changeTokenProducer
- Func<IChangeToken>
Produit le jeton de modification.
- changeTokenConsumer
- Action<TState>
Action appelée quand le jeton change.
- state
- TState
État du consommateur.