Important: The information in this document is obsolete and should not be used for new development.
IsDownloadable
Tests whether the data referenced by this Cyberdog item is a file that can be downloaded.
ODBoolean IsDownloadable ();
- return value
kODTrue
if the data is a downloadable file; otherwise,kODFalse
.DISCUSSION
This method should returnkODTrue
if this Cyberdog item is capable of providing a stream object via theCreateCyberStream
method and a file creator and file type via theGetFileInfo
method. The superclass implementation returnskODFalse
.This method throws the
kCDErrItemNotResolved
exception if the Cyberdog item is not resolved.If you subclass
CyberItem
and override this method, your override must not call its inherited method; that is, your override must implement this method's functionality completely.SEE ALSO
TheCreateCyberStream
method (page 231).
TheGetFileInfo
method (page 234).