del constructor Notifications
Crea un objeto Notifications desde el servicio web de ASMX-based Notifications .
Espacio de nombres: WebSvcNotifications
Ensamblado: ProjectServerServices (en ProjectServerServices.dll)
Sintaxis
'Declaración
Public Sub New
'Uso
Dim instance As New Notifications()
public Notifications()
Comentarios
Para crear un objeto que es equivalente a Notifications mediante el uso de la API de Windows Communication Foundation (WCF), utilice uno de los constructores de NotificationsClient .
Ejemplos
En la siguiente instrucción, NotificationsWebSvc es un espacio de nombres arbitrario para el servicio web de ASMX-based Notifications .
private static NotificationsWebSvc.Notifications notifications = new NotificationsWebSvc.Notifications();
En la siguiente instrucción, SvcNotifications es un espacio de nombres arbitrario para el servicio de WCF-based Notifications . El parámetro endpt es un valor de String que especifica el nombre de la dirección de extremo de cliente en el archivo app.config (o en el archivo web.config para las aplicaciones web).
private static SvcNotifications.NotificationsClient notificationsClient = new SvcNotifications.NotificationsClient(endpt);