DBObjectHandle :: IsDictionary - Is object space a dictionary
The property returns, whether the object space is a dictionary or not. The property return true, when the object space is a dictionary and false otherwise. The function should be called before converting an object space into a dictionary.
Dictionary GetDictionary ( ObjectSpace &os ) {
return os.isDictionary() ? os.asDictionary() : Dictionary();
}
Return value: Success ( logical )