~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to samples/CodeConverter/Source/CCSite/CodeFormatService.asmx.cs

  • Committer: sk
  • Date: 2011-09-10 05:17:57 UTC
  • Revision ID: halega@halega.com-20110910051757-qfouz1llya9m6boy
4.1.0.7915 Release Candidate 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
using System;
 
2
using System.Data;
 
3
using System.Web;
 
4
using System.Collections;
 
5
using System.Web.Services;
 
6
using System.Web.Services.Protocols;
 
7
using System.ComponentModel;
 
8
 
 
9
namespace CCSite
 
10
{
 
11
    /// <summary>
 
12
    /// Summary description for CodeFormatService
 
13
    /// </summary>
 
14
    [WebService(Namespace = "http://codeconverter.sharpdevelop.net/")]
 
15
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
 
16
    [ToolboxItem(false)]
 
17
    public class CodeFormatService : System.Web.Services.WebService
 
18
    {
 
19
 
 
20
        [WebMethod]
 
21
        public string Format(string Document, string HighlighterName, bool IncludeLineNumbers)
 
22
        {
 
23
            throw new NotImplementedException("This feature has been removed");
 
24
        }
 
25
 
 
26
        [WebMethod]
 
27
        public string[] RetrieveAvailableHighlighters()
 
28
        {
 
29
            throw new NotImplementedException("This feature has been removed");
 
30
        }
 
31
    }
 
32
}