protected: // Start a file download. This is done asynchronously or synchronously. // In the synchronous case, the parser is in the working state after // it has been called. The read file can then be picked up directly with // FinishFileDownload. In the asynchronous case, the parser is in the // pending state after it hs been called. The parser then has to leave // over the Continue (without Reschedule!). If the file is loaded, // a Continue is called with passed on token. The file can then be picked // up by FinishFileDownload. To cancel the download should a shell be // left. It can only exist a single download at the same time, For every // started download FinishFileDownload must be called. void StartFileDownload(const OUString& rURL);
// End of an asynchronous file download. Returns TRUE if the download // was successful. The read file is then passed into String. bool FinishFileDownload( OUString& rStr );
// Returns TRUE if a file was downloaded and if FileDownloadFinished // has not yet been called bool ShouldFinishFileDownload() const { return pDLMedium != nullptr; }
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.