EntityCollection.Entities-Eigenschaft
Ruft die Auflistung von Entity -Objekten.
Namespace: Microsoft.Office.Project.Server.Library
Assembly: Microsoft.Office.Project.Server.Library (in Microsoft.Office.Project.Server.Library.dll)
Syntax
'Declaration
Public Shared ReadOnly Property Entities As EntityCollection
Get
'Usage
Dim value As EntityCollection
value = EntityCollection.Entities
public static EntityCollection Entities { get; }
Eigenschaftswert
Typ: Microsoft.Office.Project.Server.Library.EntityCollection
Hinweise
Verwenden Sie EntityCollection.Entities den Zugriff auf Informationen für bestimmte Entität.
Beispiele
Der folgende Code Ruft die GUID der Aufgabenentität ab.
using PSLibrary = Microsoft.Office.Project.Server.Library;
. . .
string taskEntity = PSLibrary.EntityCollection.Entities.TaskEntity.UniqueId;
Guid taskEntityUid = new Guid(taskEntity);