稳扎稳打Silverlight(21)

稳扎稳打Silverlight(21) - 2.0通信之WebRequest和WebResponse,对指定的URI发出请求以及接收响应

介绍

Silverlight 2.0 详解WebRequest和WebResponse,对指定的URI做GET和POST请求,以及接收其响应

HttpWebRequest - 对指定的 URI 发出请求

Create() - 初始化一个 WebRequest

BeginGetResponse() - 开始对指定 URI 资源做异步请求

EndGetResponse() - 结束对指定 URI 资源做异步请求

HttpWebResponse - 对指定的 URI 做出响应

GetResponseStream() - 获取响应的数据流

示例

1、对指定的URI做GET请求以及接收响应

WebRequestGet.xaml

<UserControl x:Class="Silverlight20.Communication.WebRequestGet"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
   <StackPanel HorizontalAlignment="Left" Margin="5">

    <TextBlock x:Name="lblMsg" />

  </StackPanel>
</UserControl>

WebRequestGet.xaml.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;

using System.Threading;
using System.IO;

namespace Silverlight20.Communication
{
  public partial class WebRequestGet : UserControl
  {
    // 接收 GET 方式数据的 REST 服务
    string _url = "http://localhost:3036/REST.svc/Users/json";

    // 异常信息
    string _exception = "";

    // SynchronizationContext - 同步上下文管理类
    SynchronizationContext _syncContext;

    public WebRequestGet()
    {
      InitializeComponent();

      Demo();
    }

    void Demo()
    {
      // SynchronizationContext.Current - 当前线程的同步上下文
      _syncContext = SynchronizationContext.Current;

      /**//*
       * HttpWebRequest - 对指定的 URI 发出请求
       *   HttpWebRequest.Create(uri) - 初始化一个 WebRequest
       *   HttpWebRequest.BeginGetResponse(AsyncCallback callback, Object state) - 开始对指定 URI 资源做异步请求
       *     AsyncCallback callback - System.AsyncCallback 委托。异步操作完成时调用的回调方法
       *     Object state - 包含此异步请求的对象。即相应的 HttpWebRequest 对象
       *   HttpWebRequest.Abort() - 取消该异步请求
       *   HttpWebRequest.Accept - HTTP 头的 Accept 部分
       *   HttpWebRequest.ContentType - HTTP 头的 ContentType 部分
       *   HttpWebRequest.Headers - HTTP 头的 key/value 对集合
       *   HttpWebRequest.Method - HTTP 方法(只支持GET和POST)
       *   HttpWebRequest.RequestUri - 所请求的 URI
       *   HttpWebRequest.HaveResponse - 是否接收到了指定 URI 的响应
       *   HttpWebRequest.AllowReadStreamBuffering - 是否对从 Internet 资源接收的数据做缓冲处理。默认值为true,将数据缓存在客户端内存中,以便随时被应用程序读取
       */

      HttpWebRequest request = WebRequest.Create(
        new Uri(_url, UriKind.Absolute)) as HttpWebRequest;
      request.Method = "GET";
      request.BeginGetResponse(new AsyncCallback(ResponseCallback), request);
    }

    private void ResponseCallback(IAsyncResult result)
    {
      // IAsyncResult.AsyncState - AsyncCallback 传过来的对象
      HttpWebRequest request = result.AsyncState as HttpWebRequest;

      WebResponse response = null;

      try
      {
        // HttpWebRequest.EndGetResponse(IAsyncResult) - 结束对指定 URI 资源做异步请求
        //   返回值为 WebResponse 对象
        response = request.EndGetResponse(result) as HttpWebResponse;
      }
      catch (Exception ex)
      {
        _exception = ex.ToString();
      }

      // SynchronizationContext.Post(SendOrPostCallback d, Object state) - 将异步消息发送到该同步上下文中
      //   SendOrPostCallback d - System.Threading.SendOrPostCallback 委托
      //   Object state - 需要传递的参数
      _syncContext.Post(GetResponse, response);
    }

    private void GetResponse(object state)
    {
      /**//*
       * HttpWebResponse - 对指定的 URI 做出响应
       *   GetResponseStream() - 获取响应的数据流
       */

      HttpWebResponse response = state as HttpWebResponse;

      if (response != null)
      {
        Stream responseStream = response.GetResponseStream();
        using (StreamReader sr = new StreamReader(responseStream))
        {
          lblMsg.Text = sr.ReadToEnd();
        }
      }
      else
      {
        lblMsg.Text = _exception;
      }
    }
  }
}

时间: 2024-09-20 15:45:19

稳扎稳打Silverlight(21)的相关文章

稳扎稳打Silverlight 2.0系列文章索引

在线DEMO http://www.cnblogs.com/webabcd/archive/2008/10/09/1307486.html 1.稳扎稳打Silverlight(1) - 1.0实例之电子表 2.稳扎稳打Silverlight(2) - 1.0实例之支持录音和回放的钢琴(Silverlight+ASP.NET AJAX+DLINQ) 3.稳扎稳打Silverlight(3) - 2.0控件之Border, Button, Calendar, Canvas, CheckBox, Co

稳扎稳打Silverlight(4)

稳扎稳打Silverlight(4) - 2.0控件之DataGrid,DatePicker,Grid,GridSplitter,HyperlinkButton,Image 在线DEMO http://www.cnblogs.com/webabcd/archive/2008/10/09/1307486.html 示例 1.DataGrid.xaml <UserControl xmlns:data="clr-namespace:System.Windows.Controls;assembly

稳扎稳打Silverlight(36)

返回"稳扎稳打Silverlight 3.0系列文章索引" 稳扎稳打Silverlight(36) - 3.0控件之TreeView,ListBox增强,DataGrid增强,MediaElement增强 介绍 Silverlight 3.0 控件一览: TreeView - 树控件 ListBox - 改进:支持多选 DataGrid - 改进:结合 PagedCollectionView 实现数据分组, 增加了一些编辑数据的相关事件, 结合 DataAnnotations 实现数据

稳扎稳打Silverlight(51)

稳扎稳打Silverlight(51) - 4.0绑定之数据验证IDataErrorInfo,INotifyDataErrorInfo 介绍 Silverlight 4.0 数据验证: * IDataErrorInfo - 对数据实体类提供自定义验证支持..NET Framework 也有此接口,可以方便移植 * INotifyDataErrorInfo - 对数据实体类提供自定义验证支持,比 IDataErrorInfo 功能更强大.INotifyDataErrorInfo 支持异步验证,这就

稳扎稳打Silverlight(47)

稳扎稳打Silverlight(47) - 4.0UI之操作剪切板,隐式样式,CompositeTransform,拖放外部文件到程序中 介绍 Silverlight 4.0 用户界面(UI)相关: * 操作剪切板 - 支持获取或设置剪切板中的文本信息 * 隐式样式(Implicit Style) - 将某种样式应用到某种类型的所有元素,即全局样式 * CompositeTransform - 将多种转换方式合而为一 * 拖动(Drag)外部文件,并将其放到(Drop) Silverlight

稳扎稳打Silverlight(46)

稳扎稳打Silverlight(46) - 4.0UI之FlowDirection,TextTrimming,响应鼠标滚轮事件,响应鼠标右键事件,全屏的新特性 介绍 Silverlight 4.0 用户界面(UI)相关: * FlowDirection - 指定文本或界面元素在它们的父元素中的流动方向 * TextTrimming - 文字溢出时的显示方式 * 响应鼠标的滚轮事件 * 响应鼠标的右键事件 * 全屏的新特性 - 当其他程序获得焦点时,是否退出全屏模式 在线DEMO http://w

稳扎稳打Silverlight(45)

稳扎稳打Silverlight(45) - 4.0浏览器外运行(Out Of Browser)之被信任的应用程序(Trusted Application) 介绍 Silverlight 4.0 OOB 之 被信任的应用程序: * 概述 * 访问本地文件系统 * 调用 COM 接口 * 自定义窗口样式和行为 在线DEMO http://www.cnblogs.com/webabcd/archive/2010/08/09/1795417.html 示例 1.关于"被信任的应用程序"的简要概

稳扎稳打Silverlight(44)

稳扎稳打Silverlight(44) - 4.0浏览器外运行(Out Of Browser)之OOB的增强及其新增的NotificationWindow 介绍 Silverlight 4.0 OOB 模式的新特性: * 新增了 Closing 事件 * 实现程序在 OOB 模式下的自动更新 * NotificationWindow - 在 OOB 模式下显示通知窗口,也就是 toast * 实现自定义的 NotificationWindow 在线DEMO http://www.cnblogs.

稳扎稳打Silverlight(41)

返回"稳扎稳打Silverlight 3.0系列文章索引" 稳扎稳打Silverlight(41) - 3.0Tip/Trick之GPU加速,Out-Of-Browser,应用程序库缓存,合并ResourceDictionary,应用程序扩展服务,Silverlight插件对象 介绍 Silverlight 3.0 提示和技巧系列 GPU 加速 - 对 GPU 加速的支持 Out-Of-Browser -浏览器外运行,即支持脱离浏览器运行 应用程序库缓存 - 将 dll(zip) 缓存