LoadBalancingSupportedAttribute.Value Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value that indicates whether load balancing support is enabled.
public:
property bool Value { bool get(); };
public bool Value { get; }
member this.Value : bool
Public ReadOnly Property Value As Boolean
Property Value
true
if load balancing support is enabled; otherwise, false
. The default is true
.
Examples
The following code example gets the value of a LoadBalancingSupported
attribute's Value property.
[LoadBalancingSupported(false)]
public class LoadBalancingSupportedAttribute_Value : ServicedComponent
{
public void ValueExample()
{
// Get the LoadBalancingSupportedAttribute applied to the class.
LoadBalancingSupportedAttribute attribute =
(LoadBalancingSupportedAttribute)Attribute.GetCustomAttribute(
this.GetType(),
typeof(LoadBalancingSupportedAttribute),
false);
// Display the value of the attribute's Value property.
Console.WriteLine("LoadBalancingSupportedAttribute.Value: {0}",
attribute.Value);
}
}
<LoadBalancingSupported(False)> _
Public Class LoadBalancingSupportedAttribute_Value
Inherits ServicedComponent
Public Sub ValueExample()
' Get the LoadBalancingSupportedAttribute applied to the class.
Dim attribute As LoadBalancingSupportedAttribute = CType(Attribute.GetCustomAttribute(Me.GetType(), GetType(LoadBalancingSupportedAttribute), False), LoadBalancingSupportedAttribute)
' Display the value of the attribute's Value property.
MsgBox("LoadBalancingSupportedAttribute.Value: " & attribute.Value)
End Sub
End Class
Applies to
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.