Important: The information in this document is obsolete and should not be used for new development.
GetStatusString
Retrieves a string describing the current status of this Cyberdog stream.
void GetStatusString (in Str255 message);
message
- A 255-character buffer. On return, the buffer contains the status string.
DISCUSSION
This method should retrieve a string that describes the current status of the stream. This method may return an error string if thekCDErrorOccurred
flag is set totrue
. If you are using a progress part to display status and progress of the stream, you can pass the status string toCyberProgressBroadcaster::SetStatusString
.You can detect whether a stream's status string has changed by calling the
GetStreamStatus
method and testing the value of thekCDStatusStringChanged
flag.If you subclass
CyberStream
, 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
TheStreamStatus
type (page 179).
TheGetStreamStatus
method (page 385).
TheCyberProgressBroadcaster::SetStatusString
method (page 312).