UserGroup.AddUserCollectionToGroup Method
SharePoint 2010
Adds the collection of users to the specified group.
Web service reference: http://Site/_vti_bin/UserGroup.asmx
[SoapDocumentMethodAttribute("http://schemas.microsoft.com/sharepoint/soap/directory/AddUserCollectionToGroup", RequestNamespace = "http://schemas.microsoft.com/sharepoint/soap/directory/", ResponseNamespace = "http://schemas.microsoft.com/sharepoint/soap/directory/", Use = SoapBindingUse.Literal, ParameterStyle = SoapParameterStyle.Wrapped)] public void AddUserCollectionToGroup( string groupName, XmlNode usersInfoXml )
Parameters
- groupName
- Type: System.String
The name of the group to add users to.
- usersInfoXml
- Type: System.Xml.XmlNode
A System.Xml.XmlNode object that contains information about the users in the following form:
The following code example adds a collection of users to a group. The example assumes the existence of a local XML file that contains information about the users, which is loaded into a System.Xml.XmlDocument object. This example requires that a using (Visual C#) or Imports (Visual Basic) directive be included for the System.Xml namespace.
Web_Reference_Folder_Name.UserGroup usrgrpService = new Web_Reference_Folder_Name.UserGroup(); usrgrpService.Credentials= System.Net.CredentialCache.DefaultCredentials; XmlDocument myDocument = new XmlDocument(); myDocument.Load("URL"); XmlNode ndUsers = myDocument.DocumentElement; usrgrpService.AddUserCollectionToGroup("Group_Name", ndUsers);