LoadBalancingSupportedAttribute 构造函数

定义

初始化 LoadBalancingSupportedAttribute 类的新实例。

重载

LoadBalancingSupportedAttribute()

初始化 LoadBalancingSupportedAttribute 类的新实例,并指定负载平衡支持。

LoadBalancingSupportedAttribute(Boolean)

初始化 LoadBalancingSupportedAttribute 类的新实例,并可以选择禁用负载平衡支持。

LoadBalancingSupportedAttribute()

初始化 LoadBalancingSupportedAttribute 类的新实例,并指定负载平衡支持。

public:
 LoadBalancingSupportedAttribute();
public LoadBalancingSupportedAttribute ();
Public Sub New ()

示例

下面的代码示例创建新的 LoadBalancingSupportedAttribute

[LoadBalancingSupported]
public class LoadBalancingSupportedAttribute_Ctor : ServicedComponent
{
}
<LoadBalancingSupported()>  _
Public Class LoadBalancingSupportedAttribute_Ctor
    Inherits ServicedComponent
End Class

适用于

LoadBalancingSupportedAttribute(Boolean)

初始化 LoadBalancingSupportedAttribute 类的新实例,并可以选择禁用负载平衡支持。

public:
 LoadBalancingSupportedAttribute(bool val);
public LoadBalancingSupportedAttribute (bool val);
new System.EnterpriseServices.LoadBalancingSupportedAttribute : bool -> System.EnterpriseServices.LoadBalancingSupportedAttribute
Public Sub New (val As Boolean)

参数

val
Boolean

若要启用负载平衡支持,则为 true;否则为 false

示例

下面的代码示例创建新的 LoadBalancingSupportedAttribute

[LoadBalancingSupported(false)]
public class LoadBalancingSupportedAttribute_Ctor_Bool : ServicedComponent
{
}
<LoadBalancingSupported(False)>  _
Public Class LoadBalancingSupportedAttribute_Ctor_Bool
    Inherits ServicedComponent
End Class

适用于