Important: The information in this document is obsolete and should not be used for new development.
IsSecure
Tests whether this Cyberdog item references a secure site.
ODBoolean IsSecure ();
- return value
kODTrueif the Cyberdog item references a secure site; otherwise,kODFalse.DISCUSSION
If this Cyberdog item is opened embedded in a navigator, the navigator can call this method to determine whether to display security information to the user. The superclass implementation of this method returnskODFalse. If you are developing a Cyberdog item, you should override this method if your Cyberdog items may access data using a secure network protocol.This method throws the
kCDErrItemNoteResolvedexception if the Cyberdog item is not resolved.If you subclass
CyberItemand override this method, your override must not call its inherited method; that is, your override method must implement this method's functionality completely.SEE ALSO
TheShowSecurityInfomethod (page 245).