LoadBalancingSupportedAttribute Class
.NET Framework 3.0
Determines whether the component participates in load balancing, if the component load balancing service is installed and enabled on the server.
Namespace: System.EnterpriseServices
Assembly: System.EnterpriseServices (in system.enterpriseservices.dll)
Assembly: System.EnterpriseServices (in system.enterpriseservices.dll)
[ComVisibleAttribute(false)] [AttributeUsageAttribute(AttributeTargets.Class, Inherited=true)] public sealed class LoadBalancingSupportedAttribute : Attribute
/** @attribute ComVisibleAttribute(false) */ /** @attribute AttributeUsageAttribute(AttributeTargets.Class, Inherited=true) */ public final class LoadBalancingSupportedAttribute extends Attribute
ComVisibleAttribute(false) AttributeUsageAttribute(AttributeTargets.Class, Inherited=true) public final class LoadBalancingSupportedAttribute extends Attribute
Not applicable.
The following code example demonstrates the use of the LoadBalancingSupportedAttribute type.
using System; using System.EnterpriseServices; using System.Reflection; // References: // System.EnterpriseServices [LoadBalancingSupported] public class LoadBalancingSupportedAttribute_Ctor : ServicedComponent { } [LoadBalancingSupported(false)] public class LoadBalancingSupportedAttribute_Ctor_Bool : ServicedComponent { } [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); } }
import System.*;
import System.EnterpriseServices.*;
import System.Reflection.*;
// References:
// System.EnterpriseServices
/** @attribute LoadBalancingSupported()
*/
public class LoadBalancingSupportedAttribute_Ctor extends ServicedComponent
{
} //LoadBalancingSupportedAttribute_Ctor
/** @attribute LoadBalancingSupported(false)
*/
public class LoadBalancingSupportedAttribute_Ctor_Bool extends ServicedComponent
{
} //LoadBalancingSupportedAttribute_Ctor_Bool
/** @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
Community Additions
ADD
Show: