14 lines
421 B
C#
Raw Normal View History

//------------------------------------------------------------------------------
// <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
}
}