2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Web.Services / Test / standalone / server / TestBinding6.asmx
1 <%@ WebService Language="c#" Codebehind="InteropTestExtensibilityRequired.wsdl.cs" Class="InteropTestExtensibilityRequired.wsdl.InteropTestExtensibilityRequired" %>\r
2 using System.Xml.Serialization;
3 using System;
4 using System.Web.Services.Protocols;
5 using System.ComponentModel;
6 using System.Web.Services;
7
8 namespace InteropTestExtensibilityRequired.wsdl{
9
10 /// <remarks/>
11 [System.Web.Services.WebServiceBindingAttribute(Name="InteropTestExtensibilityRequiredSoap", Namespace="http://tempuri.org/")]
12 public class InteropTestExtensibilityRequired : System.Web.Services.WebService {
13
14         //Added by ServerGeneration
15     
16     /// <remarks/>
17     [System.Web.Services.WebMethodAttribute()]
18     [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://soapinterop.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Bare)]
19     [return: System.Xml.Serialization.XmlElementAttribute("echoStringReturn", Namespace="http://soapinterop.org/xsd")]
20     public string echoString([System.Xml.Serialization.XmlElementAttribute(Namespace="http://soapinterop.org/xsd")]  string  echoStringParam, string X_WS_ReturnValue_X)
21                 {
22                         return null;
23                 }
24         }
25 }