EntityCollection.Entities 属性
获取的Entity对象的集合。
命名空间: Microsoft.Office.Project.Server.Library
程序集: Microsoft.Office.Project.Server.Library(位于 Microsoft.Office.Project.Server.Library.dll 中)
语法
声明
Public Shared ReadOnly Property Entities As EntityCollection
Get
用法
Dim value As EntityCollection
value = EntityCollection.Entities
public static EntityCollection Entities { get; }
属性值
类型:Microsoft.Office.Project.Server.Library.EntityCollection
备注
为特定实体中使用EntityCollection.Entities来访问信息。
示例
下面的代码获取任务实体的 GUID。
using PSLibrary = Microsoft.Office.Project.Server.Library;
. . .
string taskEntity = PSLibrary.EntityCollection.Entities.TaskEntity.UniqueId;
Guid taskEntityUid = new Guid(taskEntity);