PropertyChangedMessage<T> Class

Definition

A message used to broadcast property changes in observable objects.

public class PropertyChangedMessage<T>
type PropertyChangedMessage<'T> = class
Public Class PropertyChangedMessage(Of T)

Type Parameters

T

The type of the property to broadcast the change for.

Inheritance
PropertyChangedMessage<T>

Constructors

PropertyChangedMessage<T>(Object, String, T, T)

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

Properties

NewValue

Gets the value that the property has after the change.

OldValue

Gets the value that the property had before the change.

PropertyName

Gets the name of the property that changed.

Sender

Gets the original sender of the broadcast message.

Applies to