Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

ChangeToken.OnChange Method

Definition

Namespace:
Microsoft.Extensions.Primitives
Assembly:
Microsoft.Extensions.Primitives.dll
Package:
Microsoft.Extensions.Primitives v11.0.0-preview.5.26302.115

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Overloads

Name Description
OnChange(Func<IChangeToken>, Action)

Registers the changeTokenConsumer action to be called whenever the token produced changes.

OnChange<TState>(Func<IChangeToken>, Action<TState>, TState)

Registers the changeTokenConsumer action to be called whenever the token produced changes.

OnChange(Func<IChangeToken>, Action)

Source:
ChangeToken.cs
Source:
ChangeToken.cs
Source:
ChangeToken.cs
Source:
ChangeToken.cs

Registers the changeTokenConsumer action to be called whenever the token produced changes.

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

Parameters

changeTokenProducer
Func<IChangeToken>

Produces the change token.

changeTokenConsumer
Action

Action called when the token changes.

Returns

Applies to

OnChange<TState>(Func<IChangeToken>, Action<TState>, TState)

Source:
ChangeToken.cs
Source:
ChangeToken.cs
Source:
ChangeToken.cs
Source:
ChangeToken.cs

Registers the changeTokenConsumer action to be called whenever the token produced changes.

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);
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

Type Parameters

TState

The type of the state for the changeTokenConsumer action.

Parameters

changeTokenProducer
Func<IChangeToken>

Produces the change token.

changeTokenConsumer
Action<TState>

Action called when the token changes.

state
TState

state for the consumer.

Returns

Applies to


Feedback

Was this page helpful?