Autodesk Vault ProfessionalVault API

GetPropertyComplianceFailuresByEntityIds Method

Autodesk.Connectivity.WebServicesPropertyService

Get the property compliance failures for a set of objects.

Required Permissions

ManagePropertyDefinition

Syntax

public PropCompFail[] GetPropertyComplianceFailuresByEntityIds(
   System.string entityClassId,
   System.long[] entityIds,
   System.bool filterPending
)
Public Function GetPropertyComplianceFailuresByEntityIds( _
   ByVal entityClassId As System.String, _
   ByVal entityIds() As System.Long, _
   ByVal filterPending As System.Boolean _
) As PropCompFail()

Parameters

NameDescription
entityClassIdThe entity class.
entityIdsAn array of entity IDs. (example. File.Id)
filterPendingIf true, do not show failues due to a pending compliance check. If false, show all failures.

Return Value

An array of failures. The result will be null if there are no failures.

See Also