LoadBalancingSupportedAttribute 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 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