LoadBalancingSupportedAttribute.Value プロパティ
アセンブリ: System.EnterpriseServices (system.enterpriseservices.dll 内)

負荷分散サポートが有効な場合は true。それ以外の場合は false。既定値は true です。

LoadBalancingSupported 属性の 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 'ValueExample End Class 'LoadBalancingSupportedAttribute_Value
[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); } }
/** @attribute LoadBalancingSupported(false) */ public class LoadBalancingSupportedAttribute_Value extends ServicedComponent { public void ValueExample() { // Get the LoadBalancingSupportedAttribute applied to the class. LoadBalancingSupportedAttribute attribute = (LoadBalancingSupportedAttribute)(Attribute.GetCustomAttribute( this.GetType(), LoadBalancingSupportedAttribute.class.ToType() , false)); // Display the value of the attribute's Value property. Console.WriteLine("LoadBalancingSupportedAttribute.Value: {0}" , (System.Boolean)attribute.get_Value()); } //ValueExample } //LoadBalancingSupportedAttribute_Value


Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


LoadBalancingSupportedAttribute クラス
LoadBalancingSupportedAttribute メンバ
System.EnterpriseServices 名前空間
Weblioに収録されているすべての辞書からLoadBalancingSupportedAttribute.Value プロパティを検索する場合は、下記のリンクをクリックしてください。

- LoadBalancingSupportedAttribute.Value プロパティのページへのリンク