getBytesForKey( )

Gets the binary data bytes for the specified preference key. The binary data bytes are set by setBytesForKey( ).

Interface

PODSPrefs

IDL definition
nometadata PODSUInt8 getBytesForKey(
  PODSString key,
  PODSInt32 length
);
JavaScript synopsis

Not applicable

C synopsis
PODSBoolean PODSgetBoolValueForKey(
  PODSPrefs* preferences,
  PODSString key
);
Parameters
  • preferences   The PODSPrefs object.

  • key   [in] Preference key value. See PODSPrefs key values.

  • length   [in] Length of binary data, in bytes.

Returns

Binary data bytes for specified preference key value.

Remarks

The data bytes associated with a preference key value may be used to store any binary data that needs to be associated with the key.

See also

setBytesForKey( )