Returns the values of an object of the specified set of properties.

Namespace: BlueCieloECM.InnoCielo.Meridian.Server
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public Object[] LoadPropertyValues(
	BCRepositoryObject anObject,
	IEnumerable<string> propertyDefIDsOrFullNames,
	PropertyDefFlags flags
)
Visual Basic
Public Function LoadPropertyValues ( _
	anObject As BCRepositoryObject, _
	propertyDefIDsOrFullNames As IEnumerable(Of String), _
	flags As PropertyDefFlags _
) As Object()
Visual C++
public:
array<Object^>^ LoadPropertyValues(
	BCRepositoryObject^ anObject, 
	IEnumerable<String^>^ propertyDefIDsOrFullNames, 
	PropertyDefFlags flags
)

Parameters

anObject
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCRepositoryObject
The object for which the properties should be retrieved.
propertyDefIDsOrFullNames
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'String>)>)>
The collection of property definition FullName property values that describes the set of properties that is returned. Or the collection of property definition ID property values (flags must contain eTreatStringAsObjectID flag).
flags
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..PropertyDefFlags
A bitmask that is a combination of bit flags from PropertyDefFlags.

Return Value

An array with property values.

See Also