Admin constructor
Office 2013 and later
Creates an Admin object from the ASMX-based Admin web service.
Namespace: WebSvcAdmin
Assembly: ProjectServerServices (in ProjectServerServices.dll)
In the following statement, AdminWebSvc is an arbitrary namespace for the ASMX-based Admin web service.
private static AdminWebSvc.Admin admin = new AdminWebSvc.Admin();
In the following statement, SvcAdmin is an arbitrary namespace for the WCF-based Admin service. The endpt parameter is a String value that specifies the name of the client endpoint address in the app.config file (or in the web.config file for web applications).
private static SvcAdmin.AdminClient adminClient = new SvcAdmin.AdminClient(endpt);
Show: