Saves the values of the given set of properties for an object.

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 void SavePropertyValues(
	BCRepositoryObject anObject,
	IEnumerable<string> propertyDefIDsOrFullNames,
	IEnumerable<Object> propertyValues,
	PropertyDefFlags flags
)
Visual Basic
Public Sub SavePropertyValues ( _
	anObject As BCRepositoryObject, _
	propertyDefIDsOrFullNames As IEnumerable(Of String), _
	propertyValues As IEnumerable(Of Object), _
	flags As PropertyDefFlags _
)
Visual C++
public:
void SavePropertyValues(
	BCRepositoryObject^ anObject, 
	IEnumerable<String^>^ propertyDefIDsOrFullNames, 
	IEnumerable<Object^>^ propertyValues, 
	PropertyDefFlags flags
)

Parameters

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

See Also