ResourcePlan 构造函数
从基于 ASMX 的ResourcePlan web 服务创建一个ResourcePlan对象。
命名空间: WebSvcResourcePlan
程序集: ProjectServerServices(位于 ProjectServerServices.dll 中)
语法
声明
Public Sub New
用法
Dim instance As New ResourcePlan()
public ResourcePlan()
备注
若要创建一个对象,它使用 Windows 通讯基础 (WCF) API 的相当于ResourcePlan ,使用ResourcePlanClient的构造函数之一。
示例
在下列语句中, ResourcePlanWebSvc是基于 ASMX 的ResourcePlan web 服务任意命名空间。
private static ResourcePlanWebSvc.ResourcePlan resourcePlan = new ResourcePlanWebSvc.ResourcePlan();
在下列语句中, SvcResourcePlan是基于 WCF 的ResourcePlan服务任意命名空间。endpt参数是一个String值,指定客户端终结点地址的名称,在 app.config 文件中 (或在 web 应用程序的 web.config 文件中)。
private static SvcResourcePlan.ResourcePlanClient resourcePlanClient = new SvcResourcePlan.ResourcePlanClient(endpt);