共用方式為


EntityCollection.AssignmentEntity 屬性

取得工作分派的實體類型的中繼資料。

命名空間:  Microsoft.Office.Project.Server.Library
組件:  Microsoft.Office.Project.Server.Library (在 Microsoft.Office.Project.Server.Library.dll 中)

語法

'宣告
Public ReadOnly Property AssignmentEntity As Entity
    Get
'用途
Dim instance As EntityCollection
Dim value As Entity

value = instance.AssignmentEntity
public Entity AssignmentEntity { get; }

屬性值

類型:Microsoft.Office.Project.Server.Library.Entity

備註

若要取得之實體的 GUID 指派用於 PSI 方法使用EntityCollection.Entities.AssignmentEntity.UniqueId 。

範例

下列程式碼片段使用的工作分派實體的 GUID,以使用ReadCustomFieldsByEntity方法會取得所有工作分派自訂欄位。WebSvcCustomFields是參照的任意名稱 CustomFields.asmx Web 服務。

using PSLibrary = Microsoft.Office.Project.Server.Library;
. . .
public static WebSvcCustomFields.CustomFields customFields =
    new WebSvcCustomFields.CustomFields();
. . .
string assignmentEntity = PSLibrary.EntityCollection.Entities.AssignmentEntity.UniqueId;

WebSvcCustomFields.CustomFieldDataSet cfDs = customFields.ReadCustomFieldsByEntity(
    new Guid(assignmentEntity));
. . .

請參閱

參照

EntityCollection 類別

EntityCollection 成員

Microsoft.Office.Project.Server.Library 命名空間