Table of Contents

Class ValueChangedMessage<T>

Namespace
CommunityToolkit.Mvvm.Messaging.Messages
Assembly
CommunityToolkit.Mvvm.dll

A base message that signals whenever a specific value has changed.

public class ValueChangedMessage<T>

Type Parameters

T

The type of value that has changed.

Inheritance
ValueChangedMessage<T>
Inherited Members

Constructors

ValueChangedMessage(T)

Initializes a new instance of the ValueChangedMessage<T> class.

public ValueChangedMessage(T value)

Parameters

value T

The value that has changed.

Properties

Value

Gets the value that has changed.

public T Value { get; }

Property Value

T