WebClient.Encoding 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
문자열을 업로드하고 다운로드하는 데 사용되는 Encoding 가져오거나 설정합니다.
public:
property System::Text::Encoding ^ Encoding { System::Text::Encoding ^ get(); void set(System::Text::Encoding ^ value); };
public System.Text.Encoding Encoding { get; set; }
member this.Encoding : System.Text.Encoding with get, set
Public Property Encoding As Encoding
속성 값
문자열을 인코딩하는 데 사용되는 Encoding. 이 속성의 기본값은 Default반환된 인코딩입니다.
예제
다음 코드 예제에서는이 속성의 값을 설정 하는 방법을 보여 줍니다.
void UploadString( String^ address )
{
String^ data = "Time = 12:00am temperature = 50";
WebClient^ client = gcnew WebClient;
// Optionally specify an encoding for uploading and downloading strings.
client->Encoding = System::Text::Encoding::UTF8;
// Upload the data.
String^ reply = client->UploadString( address, data );
// Disply the server's response.
Console::WriteLine( reply );
}
public static void UploadString(string address)
{
string data = "Time = 12:00am temperature = 50";
WebClient client = new WebClient();
// Optionally specify an encoding for uploading and downloading strings.
client.Encoding = System.Text.Encoding.UTF8;
// Upload the data.
string reply = client.UploadString(address, data);
// Display the server's response.
Console.WriteLine(reply);
}
Public Shared Sub UploadString(ByVal address As String)
Dim data As String = "Time = 12:00am temperature = 50"
Dim client As WebClient = New WebClient()
' Optionally specify an encoding for uploading and downloading strings.
client.Encoding = System.Text.Encoding.UTF8
' Upload the data.
Dim reply As String = client.UploadString(address, data)
' Disply the server's response.
Console.WriteLine(reply)
End Sub
설명
주의
WebRequest
, HttpWebRequest
, ServicePoint
및 WebClient
사용되지 않으므로 새 개발에 사용하면 안 됩니다. 대신 HttpClient 사용합니다.
UploadString 및 UploadStringAsync 메서드는 이 속성을 사용하여 문자열을 업로드하기 전에 지정된 문자열을 Byte 배열로 변환합니다. 자세한 내용은 GetBytes 메서드를 참조하세요.
DownloadString 또는 DownloadStringAsync 메서드를 사용하여 문자열을 다운로드하는 경우 WebClient 이 메서드에서 반환된 Encoding 사용하여 다운로드한 Byte 배열을 문자열로 변환합니다. 자세한 내용은 GetString 메서드를 참조하세요.
적용 대상
.NET