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

적용 대상