ODRecordAddValue(_:_:_:_:)
Adds a value to an attribute of a record.
Declaration
func ODRecordAddValue(_ record: ODRecordRef!, _ attribute: String!, _ value: CFTypeRef!, _ error: UnsafeMutablePointer<Unmanaged<CFError>?>!) -> BoolParameters
- record:
The record.
- attribute:
The attribute.
- value:
The value to add to the attribute. Can be a
CFStringRefobject or aCFDataRefobject. - error:
An error reference for error details. Can be
NULL.
Return Value
true if the value is successfully added; false otherwise.
See Also
Working with Records
ODRecordAddMember(_:_:_:)ODRecordChangePassword(_:_:_:_:)ODRecordContainsMember(_:_:_:)ODRecordCopyDetails(_:_:_:)ODRecordCopyValues(_:_:_:)ODRecordDelete(_:_:)ODRecordGetRecordName(_:)ODRecordGetRecordType(_:)ODRecordGetTypeID()ODRecordRemoveMember(_:_:_:)ODRecordRemoveValue(_:_:_:_:)ODRecordSetNodeCredentials(_:_:_:_:)ODRecordSetNodeCredentialsExtended(_:_:_:_:_:_:_:)ODRecordSetValue(_:_:_:_:)ODRecordSynchronize(_:_:)