QueueSystem constructor
Creates an QueueSystem object from the ASMX-based QueueSystem web service.
Namespace: WebSvcQueueSystem
Assembly: ProjectServerServices (in ProjectServerServices.dll)
Syntax
'Declaration
Public Sub New
'Usage
Dim instance As New QueueSystem()
public QueueSystem()
Remarks
To create an object that is equivalent to QueueSystem by using the Windows Communication Foundation (WCF) API, use one of the QueueSystemClient constructors.
Examples
In the following statement, QueueSystemWebSvc is an arbitrary namespace for the ASMX-based QueueSystem web service.
private static QueueSystemWebSvc.QueueSystem queueSystem = new QueueSystemWebSvc.QueueSystem();
In the following statement, SvcQueueSystem is an arbitrary namespace for the WCF-based QueueSystem 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 SvcQueueSystem.QueueSystemClient queueSystemClient = new SvcQueueSystem.QueueSystemClient(endpt);