System::Net::WebClient class

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

MethodDescription
DownloadData(const String&) constDownloads the specified resource as a byte array.
DownloadData(const SharedPtr<Uri>&) constDownloads the specified resource as a byte array.
DownloadString(const String&) constDownloads the specified resource as a string.
DownloadString(const SharedPtr<Uri>&) constDownloads the specified resource as a string.
get_Encoding() constGets 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