SPWeb.Users property
SharePoint 2013
Gets the collection of user objects that are explicitly assigned permissions in the website.
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Property value
Type: Microsoft.SharePoint.SPUserCollectionAn SPUserCollection object that represents the users.
The following code example uses the Users property to return the collection of users in a specified website of the current site collection.
This example requires using directives (Imports in Microsoft Visual Basic) for the Microsoft.SharePoint and Microsoft.SharePoint.Utilities namespaces.
using (SPWeb oWebsite = SPContext.Current.Site.OpenWeb("Website_URL")) { SPUserCollection collUsers = oWebsite.Users; foreach (SPUser oUser in collUsers) { Response.Write(SPEncode.HtmlEncode(oUser.Name) + "<BR>"); } }
Note
|
|---|
Certain objects implement the IDisposable interface, and you must avoid retaining these objects in memory after they are no longer needed. For information about good coding practices, see Disposing Objects. |
Note