File: Script\Services\ResponseFormat.cs | |
Project: ndp\fx\src\xsp\system\Extensions\System.Web.Extensions.csproj (System.Web.Extensions) |
//------------------------------------------------------------------------------ // <copyright file="ResponseFormat.cs" company="Microsoft"> // Copyright (c) Microsoft Corporation. All rights reserved. // </copyright> //------------------------------------------------------------------------------ namespace System.Web.Script.Services { public enum ResponseFormat { Json = 0, Xml = 1 } } |