CodeTypeMember.Attributes Property

Definition

Gets or sets the attributes of the member.

public:
 property System::CodeDom::MemberAttributes Attributes { System::CodeDom::MemberAttributes get(); void set(System::CodeDom::MemberAttributes value); };
public System.CodeDom.MemberAttributes Attributes { get; set; }
member this.Attributes : System.CodeDom.MemberAttributes with get, set
Public Property Attributes As MemberAttributes

Property Value

A bitwise combination of the MemberAttributes values used to indicate the attributes of the member. The default value is Private | Final.

Remarks

This property is used to specify the attributes of the type member.

Member attributes are classified in groups, with a mask for each group. The access group consists of flags containing the terms Public, Private, Family, or Assembly. The scope group includes flags for Abstract, Final, Static, Override, and Const. The AccessMask mask identifies the access attributes. The ScopeMask mask identifies the scope attributes. The default value for the Attributes property includes flags from both access and scope. To change either access or scope, first mask out the existing flags and then set the new value. For example, the code statement to identify a constructor (named constructor1) as public is constructor1.Attributes = (constructor1.Attributes & ~MemberAttributes.AccessMask) | MemberAttributes.Public;.

Applies to

See also