Important: The information in this document is obsolete and should not be used for new development.
SetLogFinger
Sets the log finger to a particular Cyberdog item.
void SetLogFinger (in CyberItem item);
item
- A
CyberItem
object representing a location just visited by the user.DISCUSSION
This method should set the log finger to point to a Cyberdog item. The method can assume that the Cyberdog item has already been added to the log; if the item is not in the log, this method should do nothing.You should not call this method directly; to set the log finger, you should call
CyberSession::SetLogFinger
, which calls this method.If you subclass
CyberLogExtension
, you must 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
TheClearLogFinger
method (page 252).
TheCyberSession::SetLogFinger
method (page 375).