Admin constructor

Creates an Admin object from the ASMX-based Admin web service.

Namespace:  WebSvcAdmin
Assembly:  ProjectServerServices (in ProjectServerServices.dll)

Syntax

'Declaration
Public Sub New
'Usage

Dim instance As New Admin()
public Admin()

Remarks

To create an object that is equivalent to Admin by using the Windows Communication Foundation (WCF) API, use one of the AdminClient constructors.

Examples

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);

See also

Reference

Admin class

Admin members

WebSvcAdmin namespace