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,
	BCCollectionBase<BCPropertyDef> propertyDefs,
	out int errorIndex
)
Visual Basic
Public Function LoadPropertyValues ( _
	anObject As BCRepositoryObject, _
	propertyDefs As BCCollectionBase(Of BCPropertyDef), _
	<OutAttribute> ByRef errorIndex As Integer _
) As Object()
Visual C++
public:
array<Object^>^ LoadPropertyValues(
	BCRepositoryObject^ anObject, 
	BCCollectionBase<BCPropertyDef^>^ propertyDefs, 
	[OutAttribute] int% errorIndex
)

Parameters

anObject
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCRepositoryObject
The object for which the properties should be retrieved.
propertyDefs
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCCollectionBase<(Of <(<'BCPropertyDef>)>)>
The collection of property definitions that describe the set of properties that is returned.
errorIndex
Type: System..::..Int32%
If an error occurs, then contains the index of the property definition that caused the error.

Return Value

An array with property values.

See Also