You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
914 B
32 lines
914 B
using System; |
|
using System.Data; |
|
using System.Web; |
|
using System.Collections; |
|
using System.Web.Services; |
|
using System.Web.Services.Protocols; |
|
using System.ComponentModel; |
|
|
|
namespace CCSite |
|
{ |
|
/// <summary> |
|
/// Summary description for CodeFormatService |
|
/// </summary> |
|
[WebService(Namespace = "http://codeconverter.sharpdevelop.net/")] |
|
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] |
|
[ToolboxItem(false)] |
|
public class CodeFormatService : System.Web.Services.WebService |
|
{ |
|
|
|
[WebMethod] |
|
public string Format(string Document, string HighlighterName, bool IncludeLineNumbers) |
|
{ |
|
throw new NotImplementedException("This feature has been removed"); |
|
} |
|
|
|
[WebMethod] |
|
public string[] RetrieveAvailableHighlighters() |
|
{ |
|
throw new NotImplementedException("This feature has been removed"); |
|
} |
|
} |
|
}
|
|
|