RoleGroupCollection.Add(RoleGroup) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds a role group to the end of the collection.
public:
void Add(System::Web::UI::WebControls::RoleGroup ^ group);
public void Add (System.Web.UI.WebControls.RoleGroup group);
member this.Add : System.Web.UI.WebControls.RoleGroup -> unit
Public Sub Add (group As RoleGroup)
Parameters
Examples
The following code example adds a dynamically created RoleGroup object to the RoleGroupCollection. This code example is part of a larger example provided for the RoleGroup class.
RoleGroup rg = new RoleGroup();
rg.ContentTemplate = new CustomTemplate();
String[] RoleList = {"users"};
rg.Roles = RoleList;
RoleGroupCollection rgc = LoginView1.RoleGroups;
rgc.Add(rg);
Dim rg As New RoleGroup
rg.ContentTemplate = New CustomTemplate
Dim RoleList(1) As String
RoleList(0) = "users"
rg.Roles = RoleList
Dim rgc As RoleGroupCollection = LoginView1.RoleGroups
rgc.Add(rg)
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.