Represents a change to a platform property when previewing configuration updates.
public sealed record PropertyDelta(string Key, string? OldValue, string? NewValue, PropertyChangeType ChangeType) : IEquatable<PropertyDelta>
kind:method, kind:property, kind:ctor. Press Esc to clear.PropertyDelta(String, String?, String?, PropertyChangeType)Represents a change to a platform property when previewing configuration updates.ChangeTypeNature of the change.KeyProperty key.NewValueProposed value, if any.OldValueExisting value, if any.