EN
Ce contenu n’est pas disponible dans votre langue. Voici la version anglaise.
WebClient.Encoding Property
May 02, 2013
Gets and sets the Encoding used to upload and download strings.
Assembly: System.Net (in System.Net.dll)
Property Value
Type: System.Text.EncodingA Encoding that is used to encode strings. The default value of this property is UTF8.
| Exception | Condition |
|---|---|
| ArgumentNullException | A Nothing value was passed to set this property. |
The UploadStringAsync methods use this property to convert the specified string to a Byte array before uploading the string. For additional information, see the GetBytes method.
When a string is downloaded using the DownloadStringAsync methods, WebClient uses the Encoding returned by this to convert the downloaded Byte array into a string. For additional information, see the GetString method.