CustomPropertiesCollectionGetActualPropertyValues Method |
Gets the values of the properties, which actually have a value.
Namespace:
Aloe.EnterpriseOne.Model.General
Assembly:
Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
Syntaxpublic IEnumerable<KeyValuePair<CustomProperty, CustomPropertyValue>> GetActualPropertyValues()
Public Function GetActualPropertyValues As IEnumerable(Of KeyValuePair(Of CustomProperty, CustomPropertyValue))
public:
IEnumerable<KeyValuePair<CustomProperty^, CustomPropertyValue^>^>^ GetActualPropertyValues()
member GetActualPropertyValues : unit -> IEnumerable<KeyValuePair<CustomProperty, CustomPropertyValue>>
Return Value
Type:
IEnumerableKeyValuePairCustomProperty,
CustomPropertyValueThe properties, which have value.
Remarks
Currently, the method is simply based on the GetPropertyValues method.
In the future it might be implemented in a more performant way,
directly loading property values from the data buffer and store.
See Also