SynchronizationAttribute.Value 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取 Value 属性的当前设置。
public:
property System::EnterpriseServices::SynchronizationOption Value { System::EnterpriseServices::SynchronizationOption get(); };
public System.EnterpriseServices.SynchronizationOption Value { get; }
member this.Value : System.EnterpriseServices.SynchronizationOption
Public ReadOnly Property Value As SynchronizationOption
属性值
SynchronizationOption 值之一。 默认值为 Required
。
示例
下面的代码示例获取特性的 Synchronization
Value 属性的值。
[Synchronization(SynchronizationOption.RequiresNew)]
public class SynchronizationAttribute_Value : ServicedComponent
{
public void ValueExample()
{
// Get the SynchronizationAttribute applied to the class.
SynchronizationAttribute attribute =
(SynchronizationAttribute)Attribute.GetCustomAttribute(
this.GetType(),
typeof(SynchronizationAttribute),
false);
// Display the value of the attribute's Value property.
Console.WriteLine("SynchronizationAttribute.Value: {0}",
attribute.Value);
}
}
<Synchronization(SynchronizationOption.RequiresNew)> _
Public Class SynchronizationAttribute_Value
Inherits ServicedComponent
Public Sub ValueExample()
' Get the SynchronizationAttribute applied to the class.
Dim attribute As SynchronizationAttribute = CType(Attribute.GetCustomAttribute(Me.GetType(), GetType(SynchronizationAttribute), False), SynchronizationAttribute)
' Display the value of the attribute's Value property.
MsgBox("SynchronizationAttribute.Value: " & attribute.Value)
End Sub
End Class