BCRepositorySavePropertyValues Method (BCRepositoryObject, IEnumerableString, IEnumerableObject, PropertyDefFlags) |
Saves the values of the given set of properties for an object.
Namespace: BlueCieloECM.InnoCielo.Meridian.ServerAssembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.19.0)
Syntax public void SavePropertyValues(
BCRepositoryObject anObject,
IEnumerable<string> propertyDefIDsOrFullNames,
IEnumerable<Object> propertyValues,
PropertyDefFlags flags
)
Public Sub SavePropertyValues (
anObject As BCRepositoryObject,
propertyDefIDsOrFullNames As IEnumerable(Of String),
propertyValues As IEnumerable(Of Object),
flags As PropertyDefFlags
)
public:
void SavePropertyValues(
BCRepositoryObject^ anObject,
IEnumerable<String^>^ propertyDefIDsOrFullNames,
IEnumerable<Object^>^ propertyValues,
PropertyDefFlags flags
)
member SavePropertyValues :
anObject : BCRepositoryObject *
propertyDefIDsOrFullNames : IEnumerable<string> *
propertyValues : IEnumerable<Object> *
flags : PropertyDefFlags -> unit
Parameters
- anObject
- Type: BlueCieloECM.InnoCielo.Meridian.ServerBCRepositoryObject
The object for which the properties should be saved.
- propertyDefIDsOrFullNames
- Type: System.Collections.GenericIEnumerableString
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.GenericIEnumerableObject
A collection of property values.
- flags
- Type: BlueCieloECM.InnoCielo.Meridian.ServerPropertyDefFlags
A bitmask that is a combination of bit flags from PropertyDefFlags.
See Also