GdPicture.NET.14
GdPicture14 Namespace / GdViewer Class / DisplayFromHTTPStop Method
Example





In This Topic
DisplayFromHTTPStop Method (GdViewer)
In This Topic
Cancels the download process previously started using the DisplayFromFTP(String,String,String,String,Int32) or the DisplayFromHTTP(String,String,Int32) methods.
Syntax
'Declaration
 
Public Sub DisplayFromHTTPStop() 
public void DisplayFromHTTPStop()
public procedure DisplayFromHTTPStop(); 
public function DisplayFromHTTPStop();
public: void DisplayFromHTTPStop(); 
public:
void DisplayFromHTTPStop(); 
Example
How to cancel transferring.
'We assume that the GdViewer1 control has been properly integrated.
'...
'If you need to cancel the download from any reason, just call:
GdViewer1.DisplayFromHTTPStop()
'Now the transfer is canceled.
//We assume that the GdViewer1 control has been properly integrated.
//...
//If you need to cancel the download from any reason, just call:
GdViewer1.DisplayFromHTTPStop();
//Now the transfer is canceled.
See Also