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.
62 lines
1.5 KiB
62 lines
1.5 KiB
<?xml version="1.0"?> |
|
<Template author="Tom Schroeter" version="1.0"> |
|
|
|
<Config |
|
name = "${res:Templates.File.WebService.Name}" |
|
icon = "C#.File.WebFile" |
|
category = "C#" |
|
subcategory = "ASP.NET" |
|
defaultname = "WebService${Number}.asmx" |
|
language = "C#" |
|
/> |
|
|
|
<Description>${res:Templates.File.WebService.Description}</Description> |
|
<!-- |
|
Special new file templates: |
|
${StandardNamespace} -> Standardnamespace of the current project or FileNameWithoutExtension |
|
${FullName} -> Full generated path name |
|
${FileName} -> File name with extension |
|
${FileNameWithoutExtension} -> File name without extension |
|
${Extension} -> Extension in the form ".cs" |
|
${Path} -> Full path of the file |
|
--> |
|
<Files> |
|
<File name="${Path}/${FileNameWithoutExtension}.cs" DependentUpon="${FileName}" language="C#"><![CDATA[${StandardHeader.C#} |
|
using System; |
|
using System.Web.Services; |
|
|
|
namespace ${StandardNamespace} |
|
{ |
|
/// <summary> |
|
/// Description of ${ClassName} |
|
/// </summary> |
|
[WebService |
|
( Name = "${ClassName}", |
|
Description = "${ClassName}", |
|
Namespace = "http://www.${ClassName}.example" |
|
) |
|
] |
|
public class ${ClassName} : WebService |
|
{ |
|
public ${ClassName}() |
|
{ |
|
} |
|
|
|
[WebMethod] |
|
public string Status() |
|
{ |
|
string s = string.Format("Time: {0}", DateTime.Now); |
|
return s; |
|
} |
|
} |
|
} |
|
]]></File> |
|
<File name="${FullName}"><![CDATA[ |
|
<%@ WebService Class="${StandardNamespace}.${ClassName}" Language="C#" %> |
|
|
|
]]> </File> |
|
|
|
</Files> |
|
|
|
<AdditionalOptions/> |
|
</Template>
|
|
|