WssInterop 构造函数
从基于 ASMX 的WssInterop web 服务创建WssInterop对象。
命名空间: WebSvcWssInterop
程序集: ProjectServerServices(位于 ProjectServerServices.dll 中)
语法
声明
Public Sub New
用法
Dim instance As New WssInterop()
public WssInterop()
备注
若要创建使用 Windows Communication Foundation (WCF) API 等效WssInterop对象,请使用WssInteropClient构造函数之一。
示例
在下面的语句, WssInteropWebSvc是基于 ASMX 的WssInterop web 服务任意命名空间。
private static WssInteropWebSvc.WssInterop wssInterop = new WssInteropWebSvc.WssInterop();
在下面的语句, SvcWssInterop是基于 WCF 的WssInterop服务任意命名空间。endpt参数是一个String值,指定客户端终结点地址的名称,在 app.config 文件 (或 web 应用程序的 web.config 文件中)。
private static SvcWssInterop.WssInteropClient wssInteropClient = new SvcWssInterop.WssInteropClient(endpt);