DependencyObject.GetValue(DependencyProperty) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Zapewnia dostęp do wartości wyznaczonego DependencyPropertyobiektu .
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
Parametry
- dependencyProperty
- DependencyProperty
Element DependencyProperty.
Zwraca
Obiekt reprezentujący wartość wyznaczonego DependencyPropertyobiektu .
Przykłady
Poniższy kod pokazuje, jak użyć GetValue polecenia , aby zwrócić wartość reprezentowaną przez nazwaną właściwość zależności w kontekście metody get i set. Ten przykładowy kod jest częścią przykładowego zestawu SDK wysyłania wiadomości e-mail i pochodzi z pliku SendMailActivity.cs. Aby uzyskać więcej informacji, zobacz Przykład działania wysyłania wiadomości e-mail.
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
Uwagi
Ten element członkowski jest zwykle używany we właściwości , aby dostarczyć wartość nazwanej wartości zależności.