AttachablePropertyServices Class
Provides static helper methods that obtain values and accessor method information from an attachable property and that work with an attached property store.
Assembly: System.Xaml (in System.Xaml.dll)
The AttachablePropertyServices type exposes the following members.
| Name | Description | |
|---|---|---|
![]() ![]() | CopyPropertiesTo | Copies all attachable property/value pairs from a specified attachable property store and into a destination array. |
![]() ![]() | GetAttachedPropertyCount | Returns the count of the attachable property entries that are in the specified store. |
![]() ![]() | RemoveProperty | Removes the entry for the specified attachable property from the specified store. |
![]() ![]() | SetProperty | Sets a value for the specified attachable property in the specified store. |
![]() ![]() | TryGetProperty(Object, AttachableMemberIdentifier, Object%) | Attempts to get a value for the specified attachable property in the specified store. Does not throw an exception if the specific attachable property does not exist in the store. |
![]() ![]() | TryGetProperty<T>(Object, AttachableMemberIdentifier, T%) | Attempts to get a value for the specified attachable property in the specified store, returning a generic output form. Does not throw an exception if the specific attachable property does not exist in the store. |
Most functionality in this class relies on an attached property store, which generally implements the IAttachedPropertyStore interface. However, parameters for passing the store into AttachablePropertyServices are not typed as the interface and are instead typed as object. This is because you can pass an arbitrary object, and in this case, an internal default attachable property store is used.
Best practice for the arbitrary object is to pass the object that would otherwise be associated with the store. Do not pass nullptr to indicate that you do not have an IAttachedPropertyStore to use. Passing nullptr enters code paths that do nothing. Passing an object that is non-null, but evaluates as nullptr on an attempted IAttachedPropertyStore cast, uses the default attachable property store.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
