Admin::UpdateUserSyncSetting method
Office 2013 and later
Updates the setting for user synchronization with Project Web App, project sites, and email.
Namespace: WebSvcAdmin
Assembly: ProjectServerServices (in ProjectServerServices.dll)
Parameters
- userSyncSetting
- Type: WebSvcAdmin.UserSyncSettings
One or more enumerated user synchronization settings.
NoteUse Microsoft.Office.Project.Server.Library.Admin.UserSyncSettings for the correct enumeration values.
The following example shows the use of the UpdateUserSyncSettings method. It disables synchronization with project sites for the application user. SvcAdmin is the namespace of the Admin service in the ProjectServerServices.dll proxy assembly. For information about creating a PSI proxy assembly and an app.config file, see Prerequisites for WCF-based code samples in Project 2013.
using System; using System.Text; using PSLibrary = Microsoft.Office.Project.Server Library; namespace Microsoft.SDK.Project.Samples.UpdateUserSyncSetting { class Program { private const string ENDPOINT = "basicHttp_Admin"; private static SvcAdmin.AdminClient adminClient; static void Main(string[] args) { ConfigClientEndpoints(ENDPOINT); int syncSettings = (int)PSLibrary.Admin.UserSyncSettings.DisablePWS; Console.WriteLine("SyncSettings value: {0}", syncSettings.ToString()); adminClient.UpdateUserSyncSetting((PSLibrary.Admin.UserSyncSettings)syncSettings); Console.Write("\nPress any key to exit... "); Console.ReadKey(true); } // Use the endpoints that are defined in app.config to configure the client. public static void ConfigClientEndpoints(string endpt) { adminClient = new SvcAdmin.AdminClient(endpt); } } }
The console output is: SyncSettings = 12
Show: