DependencyProperty Class
A special kind of property that can be defined or attached to a DependencyObject. There are three kinds of dependency properties: instance properties, meta properties, and attached properties. This class cannot be inherited.
Assembly: System.Workflow.ComponentModel (in System.Workflow.ComponentModel.dll)
| Name | Description | |
|---|---|---|
![]() | DefaultMetadata | Gets the PropertyMetadata that represents user-defined data for this DependencyProperty. |
![]() | IsAttached | Gets the property that indicates whether this DependencyProperty is associated to a DependencyObject by registration. |
![]() | IsEvent | Gets the property that indicates whether the DependencyProperty is an event Delegate. |
![]() | Name | Gets the Name of the DependencyProperty. |
![]() | OwnerType | Gets the Type of the DependencyProperty. |
![]() | PropertyType | Gets the Type of the value stored in the DependencyProperty. |
![]() | ValidatorType | Gets the Type implementing validation logic specific to the DependencyProperty. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() ![]() | FromName(String^, Type^) | |
![]() ![]() | FromType(Type^) | |
![]() | GetHashCode() | Returns the hash code for this instance.(Overrides Object::GetHashCode().) |
![]() | GetType() | |
![]() ![]() | Register(String^, Type^, Type^) | Initializes a new instance of the DependencyProperty class that has the properties parameterized according to the input parameters. |
![]() ![]() | Register(String^, Type^, Type^, PropertyMetadata^) | Initializes a new instance of the DependencyProperty class that has the properties parameterized according to the input parameters. |
![]() ![]() | RegisterAttached(String^, Type^, Type^) | Initializes a new instance of the DependencyProperty class that has the properties parameterized according to the input parameters. This instance is intended to declare properties that are used on objects other than the objects of owning type. |
![]() ![]() | RegisterAttached(String^, Type^, Type^, PropertyMetadata^) | Initializes a new instance of the DependencyProperty class that has the properties parameterized according to the input parameters. |
![]() ![]() | RegisterAttached(String^, Type^, Type^, PropertyMetadata^, Type^) | Initializes a new instance of the DependencyProperty class that has the properties parameterized according to the input parameters. |
![]() | ToString() | Overrides the Object method to return the Name property value.(Overrides Object::ToString().) |
| Name | Description | |
|---|---|---|
![]() ![]() | ISerializable::GetObjectData(SerializationInfo^, StreamingContext) | Populates a SerializationInfo with the data required to serialize the target object. |
Note |
|---|
This material discusses types and namespaces that are obsolete. For more information, see Deprecated Types in Windows Workflow Foundation 4.5. |
Dependency properties support three use cases. First, if an instance property of an activity is implemented by using a dependency property, that property can be assigned an ActivityBind instead of an actual value. Second, activity properties that are metadata (that is, the value cannot change at run time) should be implemented by using dependency properties, specifying the Metadata option. Third, dependency properties support attached properties, which are properties that are applied to dependency objects dynamically.
The following example shows how to register a DependencyProperty for use by a DependencyObject. This code example is part of the Send E-mail SDK sample and is from the SendMailActivity.cs file. For more information, see Send Mail Activity.
Available since 3.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.





