PostGetPropertyValues Method
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
| Name | Description |
|---|---|
| vltConn | A connection to a vault server |
| entities | The list of entity objects (ie. FileIterations, ItemRevisions) that we are retrieving values for |
| propDefs | The list of propdefs that we are retrieving values for. |
| resultValues | The results object to store any valued computed in the implementation of this method. This also contains any values already computed by other providers. |
| settings | Optional settings which configure how some property values should be computed. |