相关文章  
  • IIS控制管理(Web虚拟目录创建管理)
  • 如何在Win 2003中识别IIS 6.0组件
  • 建立大容量Web界面的Email系统
  • 用SQLXML3把存储过程暴露为Web服务
  • IIS 操作失败诊断指南
  • IIS永远的后门
  • 提高IIS 5.0网站服务器的执行效率
  • IIS 5.1和IIS 6.0一些显著的重要区别
  • 深入剖析Windows IIS 6.0(1)
  • 深入剖析Windows IIS 6.0(2)
  •   推荐  
      科普之友首页   专利     科普      动物      植物        天文   考古   前沿科技
     您现在的位置在:  首页 >>文献 >>培训

    服务器端异步 Web 方法(一)4

    数作为输入,并返回由 EndXXX 函数返回的内容。因此,如果某个 Web 方法具有如下同步声明:
      
        [WebMethod]
      
        public string LengthyProcedure(int milliseconds) {...}
      
      则异步声明将为:
      
        [WebMethod]
      
        public IAsyncResult BeginLengthyProcedure(
      
                    int milliseconds,
      
                    AsyncCallback cb,
      
                    object s) {...}
      
         [WebMethod]
      
        public string EndLengthyProcedure(IAsyncResult call) {...}
      
      每个方法的 WSDL 都是相同的。<

    页码:[1] [2] [3] [4] [5] [6]4页、共6页

         

          设为首页       |       加入收藏       |       广告服务       |       友情链接       |       版权申明      

    Copyriht 2007 - 2008 ©  科普之友 All right reserved