Autodesk Vault ProfessionalVault API

PostGetPropertyValues Method

Autodesk.DataManagement.Client.Framework.Vault.InterfacesIPropertyExtensionProvider

This method is called to retrieve the values for any property definitions after the server is called to retrieve property values. This can be used to either compute a value based on another property value that was already retrieved or to modify a value that was returned from the server

Syntax

void PostGetPropertyValues(
   Connection vltConn,
   System.Collections.Generic.IEnumerable<IEntity> entities,
   PropertyDefinitionDictionary propDefs,
   PropertyValues resultValues,
   PropertyValueSettings settings
)
Sub PostGetPropertyValues( _
   ByVal vltConn As Connection, _
   ByVal entities As System.Collections.Generic.IEnumerable(Of IEntity), _
   ByVal propDefs As PropertyDefinitionDictionary, _
   ByVal resultValues As PropertyValues, _
   ByVal settings As PropertyValueSettings _
) 

Parameters

NameDescription
vltConnA connection to a vault server
entitiesThe list of entity objects (ie. FileIterations, ItemRevisions) that we are retrieving values for
propDefsThe list of propdefs that we are retrieving values for.
resultValuesThe results object to store any valued computed in the implementation of this method. This also contains any values already computed by other providers.
settingsOptional settings which configure how some property values should be computed.

See Also