posted @ 2012-03-24 20:24 如是如是 阅读(15) 评论(0) 编辑
摘要: MSDN Blogs > Henrik's Blog > Using ASP.NET Web API with ASP.NET Web Forms Using ASP.NET Web API with ASP.NET Web FormsRate This Henrik F Nielsen Henrik F NielsenMSFT2,575 Recent Achievements 9 2...阅读全文
posted @ 2012-03-07 17:35 如是如是 阅读(19) 评论(0) 编辑
摘要: Introduction We recently announced that WCF Web API is now ASP.NET Web API. This document provides guidance on how to migrate your existing WCF Web API code to ASP.NET Web API.Overview The WCF Web A...阅读全文
posted @ 2012-03-07 12:15 如是如是 阅读(12) 评论(0) 编辑
摘要: ASP.NET Web API includes support for the following features:Modern HTTP programming model: Directly access and manipulate HTTP requests and responses in your Web APIs using a new, strongly typed HTTP ...阅读全文
posted @ 2012-03-02 13:03 如是如是 阅读(25) 评论(0) 编辑
posted @ 2012-02-21 21:15 如是如是 阅读(9) 评论(0) 编辑
摘要: namespace RestExample.Model{#if SILVERLIGHT using System.ComponentModel; public class Customer : INotifyPropertyChanged #else public class Customer #en...阅读全文
posted @ 2012-02-21 21:13 如是如是 阅读(7) 评论(0) 编辑
摘要: using System.Windows;using System.Windows.Controls;using RestClient.ViewModels;namespace RestClient{ public partial class MainPage : UserControl { MainViewModel _vm; public MainPa...阅读全文
posted @ 2012-02-21 21:09 如是如是 阅读(14) 评论(0) 编辑
摘要: using System.ComponentModel;using RestExample.Model;using System.Collections.ObjectModel;using System;using System.Net;using System.Diagnostics;using System.Xml;using System.Xml.Linq;using System.Linq...阅读全文
posted @ 2012-02-21 21:07 如是如是 阅读(7) 评论(0) 编辑
摘要: using System.Collections.Generic;using System.ServiceModel;using System.ServiceModel.Web;using RestExample.Model;using RestExample.Web.Resources;namespace RestExample.Web.Api{ [ServiceContract] ...阅读全文
posted @ 2012-02-21 21:05 如是如是 阅读(8) 评论(0) 编辑
