System::Net::WebClient classe
Contenuti
[
Nascondere
]WebClient class
WebClient provides common methods for sending and receiving data. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.
class WebClient : public System::ComponentModel::Component
Metodi
| Metodo | Descrizione |
|---|---|
| DownloadData(const String&) const | Scarica la risorsa specificata come array di byte. |
| DownloadData(const SharedPtr<Uri>&) const | Scarica la risorsa specificata come array di byte. |
| DownloadString(const String&) const | Scarica la risorsa specificata come stringa. |
| DownloadString(const SharedPtr<Uri>&) const | Scarica la risorsa specificata come stringa. |
| get_Encoding() const | Ottiene la codifica usata per scaricare o caricare stringhe. |
| set_Encoding(const SharedPtr<Text::Encoding>&) | Imposta la codifica usata per scaricare o caricare stringhe. |
| set_UseDefaultCredentials(bool) | NON IMPLEMENTATO. |
| WebClient() | Informazioni RTTI. |
| ~WebClient() | Distrugge l’istanza corrente. |
Vedi anche
- Class Component
- Namespace System::Net
- Library Aspose.Font for C++