DependencyProperty.UnsetValue Field
Specifies a static value that is used by the WPF property system rather than null to indicate that the property exists, but does not have its value set by the property system.
Namespace: System.Windows
Assembly: WindowsBase (in WindowsBase.dll)
UnsetValue is a sentinel value that is used for scenarios where the WPF property system is unable to determine a requested DependencyProperty value. UnsetValue is used rather than null, because null could be a valid property value, as well as a valid (and frequently used) DefaultValue.
UnsetValue is never returned out of DependencyObject.GetValue. When you call DependencyObject.GetValue on a dependency property on a DependencyObject instance, one of the following applies:
A dependency property has a default value established in metadata and that value is returned. This value might come from DefaultMetadata.
Some other value was established by the property system, and the default value is no longer relevant. For details, see Dependency Property Value Precedence.
Setting a DefaultValue of UnsetValue is specifically disallowed.
DependencyObject.ReadLocalValue returns UnsetValue when the requested property has not been locally set.
UnsetValue has a special meaning when used as the return value of a CoerceValueCallback. For details, see Dependency Property Callbacks and Validation.
If you are binding to a database, note that UnsetValue is not equivalent to Value, in a similar way to how Value is not equivalent to a true null.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.