다음을 통해 공유


PersonalizableAttribute 생성자

정의

PersonalizableAttribute 클래스의 새 인스턴스를 초기화합니다.

오버로드

PersonalizableAttribute()

PersonalizableAttribute 클래스의 새 인스턴스를 초기화합니다.

PersonalizableAttribute(Boolean)

제공된 매개 변수를 사용하여 PersonalizableAttribute 클래스의 새 인스턴스를 초기화합니다.

PersonalizableAttribute(PersonalizationScope)

제공된 매개 변수를 사용하여 PersonalizableAttribute 클래스의 새 인스턴스를 초기화합니다.

PersonalizableAttribute(PersonalizationScope, Boolean)

제공된 매개 변수를 사용하여 PersonalizableAttribute 클래스의 새 인스턴스를 초기화합니다.

PersonalizableAttribute()

PersonalizableAttribute 클래스의 새 인스턴스를 초기화합니다.

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

설명

This constructor internally sets the IsPersonalizable property to true, the Scope property to User, and the IsSensitive property to false.

적용 대상

PersonalizableAttribute(Boolean)

제공된 매개 변수를 사용하여 PersonalizableAttribute 클래스의 새 인스턴스를 초기화합니다.

public:
 PersonalizableAttribute(bool isPersonalizable);
public PersonalizableAttribute (bool isPersonalizable);
new System.Web.UI.WebControls.WebParts.PersonalizableAttribute : bool -> System.Web.UI.WebControls.WebParts.PersonalizableAttribute
Public Sub New (isPersonalizable As Boolean)

매개 변수

isPersonalizable
Boolean

속성을 개인 설정할 수 있는지 여부를 나타내는 부울 값입니다.

설명

This constructor internally sets the IsPersonalizable property to the value of the Boolean parameter, the Scope property to User, and the IsSensitive property to false.

이 생성자는 파생된 형식이 기본 형식에서 개인 설정할 수 있는 가상 속성을 파생 형식에서 개인화할 수 없는 것으로 표시하려는 경우에 유용합니다.

적용 대상

PersonalizableAttribute(PersonalizationScope)

제공된 매개 변수를 사용하여 PersonalizableAttribute 클래스의 새 인스턴스를 초기화합니다.

public:
 PersonalizableAttribute(System::Web::UI::WebControls::WebParts::PersonalizationScope scope);
public PersonalizableAttribute (System.Web.UI.WebControls.WebParts.PersonalizationScope scope);
new System.Web.UI.WebControls.WebParts.PersonalizableAttribute : System.Web.UI.WebControls.WebParts.PersonalizationScope -> System.Web.UI.WebControls.WebParts.PersonalizableAttribute
Public Sub New (scope As PersonalizationScope)

매개 변수

scope
PersonalizationScope

개인 설정의 범위를 나타내는 PersonalizationScope입니다.

설명

이 생성자는 내부적으로 속성을 지정한 매개 변수에 Scope 속성을 설정하고 속성을 false.로 설정합니다IsPersonalizable.trueIsSensitive

적용 대상

PersonalizableAttribute(PersonalizationScope, Boolean)

제공된 매개 변수를 사용하여 PersonalizableAttribute 클래스의 새 인스턴스를 초기화합니다.

public:
 PersonalizableAttribute(System::Web::UI::WebControls::WebParts::PersonalizationScope scope, bool isSensitive);
public PersonalizableAttribute (System.Web.UI.WebControls.WebParts.PersonalizationScope scope, bool isSensitive);
new System.Web.UI.WebControls.WebParts.PersonalizableAttribute : System.Web.UI.WebControls.WebParts.PersonalizationScope * bool -> System.Web.UI.WebControls.WebParts.PersonalizableAttribute
Public Sub New (scope As PersonalizationScope, isSensitive As Boolean)

매개 변수

scope
PersonalizationScope

개인 설정의 범위를 나타내는 PersonalizationScope입니다.

isSensitive
Boolean

속성 정보가 민감한 것으로 간주되는지 여부를 나타내는 부울 값입니다.

설명

이 생성자는 내부적으로 속성을 true설정합니다. 속성은 Scope 지정된 첫 번째 매개 변수로, 속성은 IsSensitive 지정된 두 번째 매개 변수로 설정합니다IsPersonalizable.

적용 대상