Gets or sets the secondary contact that is used for the site collection.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in microsoft.sharepoint.dll)
Visual Basic (Declaration)
Public Property SecondaryContact As SPUser
Dim instance As SPSite
Dim value As SPUser
value = instance.SecondaryContact
instance.SecondaryContact = value
public SPUser SecondaryContact { get; set; }
Property Value
An 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 oSiteCollection As New SPSite("http://" + System.Environment.MachineName)
Using oWebsiteRoot As SPWeb = oSiteCollection.Current.Site.AllWebs(System.Environment.MachineName)
oWebsite.SecondaryContact = oWebsiteRoot.RootWeb.Users("User_Name")
End Using
End Using
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"];
}
}