ServerContext.GetContext, méthode (SPSite) (Microsoft.Office.Server)
Gets the ServerContext instance for the specified site.
Espace de noms : Microsoft.Office.Server
Assembly : Microsoft.Office.Server (dans microsoft.office.server.dll)
Syntaxe
'Déclaration
Public Shared Function GetContext ( _
site As SPSite _
) As ServerContext
'Utilisation
Dim site As SPSite
Dim returnValue As ServerContext
returnValue = ServerContext.GetContext(site)
public static ServerContext GetContext (
SPSite site
)
Paramètres
- site
A Microsoft.SharePoint.SPSite object.
Valeur de retour
A ServerContext instance.
Exemple
//Updates a user profile
//Creates a user profile. Obtains the property values from the default
//domain controller or the master connection that is configured on the
//server
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SharePoint.Administration;
using Microsoft.Office.Server.UserProfiles;
using Microsoft.SharePoint;
using Microsoft.Office.Server;
using System.Web;
namespace UserProfilesApp
{
class Program
{
static void Main(string[] args)
{
try
{
using (SPSite site = new SPSite("https://servername"))
{
ServerContext context = ServerContext.GetContext(site);
UserProfileManager profileManager = new UserProfileManager(context);
string sAccount = "domainname\\username";
UserProfile u = profileManager.GetUserProfile(sAccount);
u[PropertyConstants.HomePhone].Value = "nnnnnnnnnn";
u[PropertyConstants.CellPhone].Value = "nnnnnnnnnn";
u.Commit();
}
}
catch (UserNotFoundException exception)
{
Console.WriteLine(exception.ToString());
}
}
}
}
Voir aussi
Référence
ServerContext, classe
Membres ServerContext
Microsoft.Office.Server, espace de noms