DownloaderSessionPathname event |
|
Remarks
Occurs at the beginning of a downloading session, generated by a previous to the Downloader.SessionStartToFile method, in order to notify the container application about the exact pathname where the downloaded file is being stored locally.
For details about management of download sessions from HTTP and FTP servers, refer to the How to manage download sessions tutorial.
For further details about synchronization through Events see the How to synchronize the container application through events tutorial.
Syntax
[Visual Basic] Public Event DownloaderSessionPathname As DownloaderSessionPathnameEventHandler |
[C#] public event DownloaderSessionPathnameEventHandler DownloaderSessionPathname; |
[C++] public: __event DownloaderSessionPathnameEventHandler DownloaderSessionPathname; |
Event Data
The event handler receives an argument of type DownloaderSessionPathnameEventArgs having the following parameters:
Parameter |
Description |
|
|
nDllSessionUniqueId |
Unique identifier of the downloading session generated by a previous call to the Downloader.SessionStartToFile method. |
strPathname |
The local pathname where the downloaded file is stored |