System::Net::WebClient class
Contents
[
Hide
]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
Methods
Method | Description |
---|---|
DownloadData(const String&) const | Downloads the specified resource as a byte array. |
DownloadData(const SharedPtr<Uri>&) const | Downloads the specified resource as a byte array. |
DownloadString(const String&) const | Downloads the specified resource as a string. |
DownloadString(const SharedPtr<Uri>&) const | Downloads the specified resource as a string. |
get_Encoding() const | Gets the encoding used to download or upload strings. |
set_Encoding(const SharedPtr<Text::Encoding>&) | Sets the encoding used to download or upload strings. |
set_UseDefaultCredentials(bool) | NOT IMPLEMENTED. |
WebClient() | RTTI information. |
~WebClient() | Destructs the current instance. |
See Also
- Class Component
- Namespace System::Net
- Library Aspose.TeX for C++