SPSite.SecondaryContact Property
Gets or sets the secondary contact that is used for the site collection. (Read-only in sandboxed solutions.)
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: Yes
Available in SharePoint Online
Property Value
Type: Microsoft.SharePoint.SPUserAn SPUser object that represents the secondary contact.
The user that is specified by the SecondaryContact property should not be identical to the user that is specified by the Owner property.
The following code example sets a user as the secondary contact for a site collection.
using (SPSite oSiteCollection = new SPSite("http://" + System.Environment.MachineName)) { using (SPWeb oWebsiteRoot = oSiteCollection.Current.Site.AllWebs("http://" + System.Environment.MachineName)) { oWebsite.SecondaryContact = oWebsiteRoot.RootWeb.Users["User_Name"]; } }
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