DependencyObject.GetValue(DependencyProperty) Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Предоставляет доступ к значению заданного свойства DependencyProperty.
public:
System::Object ^ GetValue(System::Workflow::ComponentModel::DependencyProperty ^ dependencyProperty);
public object GetValue (System.Workflow.ComponentModel.DependencyProperty dependencyProperty);
member this.GetValue : System.Workflow.ComponentModel.DependencyProperty -> obj
Public Function GetValue (dependencyProperty As DependencyProperty) As Object
Параметры
- dependencyProperty
- DependencyProperty
Возвращаемое значение
Объект, представляющий значение выделенного DependencyProperty.
Примеры
В следующем примере кода показано, как использовать GetValue, чтобы возвратить значение, представляемое именованным свойством зависимостей в контексте возвращения и установки. Этот пример кода является частью примера пакета SDK для отправки электронной почты и находится в файле SendMailActivity.cs. Дополнительные сведения см. в примере действия отправки электронной почты.
public string To
{
get
{
return ((string)(base.GetValue(SendEmailActivity.ToProperty)));
}
set
{
base.SetValue(SendEmailActivity.ToProperty, value);
}
}
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)]
[BrowsableAttribute(true)]
[DescriptionAttribute("The Subject property is used to specify the subject of the Email message.")]
[CategoryAttribute(MessagePropertiesCategory)]
public string Subject
{
get
{
return ((string)(base.GetValue(SendEmailActivity.SubjectProperty)));
}
set
{
base.SetValue(SendEmailActivity.SubjectProperty, value);
}
}
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)]
[BrowsableAttribute(true)]
[DescriptionAttribute("The From property is used to specify the From (Sender's) address for the email mesage.")]
[CategoryAttribute(MessagePropertiesCategory)]
public string From
{
get
{
return ((string)(base.GetValue(SendEmailActivity.FromProperty)));
}
set
{
base.SetValue(SendEmailActivity.FromProperty, value);
}
}
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)> _
<BrowsableAttribute(True)> _
<DescriptionAttribute("The To property is used to specify the receipient's email address.")> _
<CategoryAttribute(MessagePropertiesCategory)> _
Public Property EmailTo() As String
Get
Return CType(MyBase.GetValue(SendEmailActivity.ToProperty), String)
End Get
Set(ByVal value As String)
MyBase.SetValue(SendEmailActivity.ToProperty, value)
End Set
End Property
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)> _
<BrowsableAttribute(True)> _
<DescriptionAttribute("The Subject property is used to specify the subject of the Email message.")> _
<CategoryAttribute(MessagePropertiesCategory)> _
Public Property Subject() As String
Get
Return CType(MyBase.GetValue(SendEmailActivity.SubjectProperty), String)
End Get
Set(ByVal value As String)
MyBase.SetValue(SendEmailActivity.SubjectProperty, value)
End Set
End Property
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)> _
<BrowsableAttribute(True)> _
<DescriptionAttribute("The From property is used to specify the From (Sender's) address for the email mesage.")> _
<CategoryAttribute(MessagePropertiesCategory)> _
Public Property FromEmail() As String
Get
Return CType(MyBase.GetValue(SendEmailActivity.FromEmailProperty), String)
End Get
Set(ByVal value As String)
MyBase.SetValue(SendEmailActivity.FromEmailProperty, value)
End Set
End Property
Комментарии
Этот элемент, как правило, используется при возвращении свойств для получения значения именованного свойства зависимостей.