■ WebClient 클래스의 DownloadStringAsync 메소드를 사용하는 방법을 보여준다.
▶ 예제 코드 (XAML)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<Grid x:Name="grid"> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto" /> </Grid.ColumnDefinitions> <TextBlock Text="다운로드 결과" /> <Border Grid.Row="1" BorderThickness="1" BorderBrush="Black"> <TextBlock x:Name="resultTextBlock" Width="400" Height="300" /> </Border> <Button x:Name="requestButton" Grid.Row="2" Width="Auto" Height="Auto" Content="다운로드" /> </Grid> |
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
using System; using System.Net; using System.Windows; ... this.requestButton.Click += requestButton_Click; ... #region 요청 버튼 클릭시 처리하기 - requestButton_Click(sender, e) /// <summary> /// 요청 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void requestButton_Click(object sender, RoutedEventArgs e) { WebClient webClient = new WebClient(); webClient.DownloadStringCompleted += webClient_DownloadStringCompleted; webClient.DownloadStringAsync(new Uri("https://127.0.0.1/sample.txt", UriKind.Absolute)); } #endregion #region 웹 클라이언트 문자열 다운로드 완료시 처리하기 - webClient_DownloadStringCompleted(sender, e) /// <summary> /// 웹 클라이언트 문자열 다운로드 완료시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void webClient_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e) { if(e.Cancelled) { MessageBox.Show("작업이 취소되었습니다."); return; } if(e.Error != null) { MessageBox.Show(e.Error.ToString()); return; } this.resultTextBlock.Text = e.Result.ToString(); } #endregion |