Прочетете на английски Редактиране

Споделяне чрез


SoapDocumentMethodAttribute.ResponseElementName Property

Definition

Gets or sets the XML element associated with the SOAP response for an XML Web service method.

C#
public string ResponseElementName { get; set; }

Property Value

The XML element associated with the SOAP request for an XML Web service method. The default value is WebServiceNameResult, where WebServiceName is the name of the XML Web service method.

Examples

The following code example sets the name of the XML element associated with the XML Web service method in the SOAP response to MyCustomResponseElement.

ASP.NET (C#)
<%@ WebService Language="C#" Class="SoapDocumentMethodSample" %>
    
using System.Web.Services;
using System.Web.Services.Protocols;

public class SoapDocumentMethodSample
{
   [WebMethod]
   [SoapDocumentMethod(ResponseNamespace="http://www.contoso.com",ResponseElementName="MyCustomResponseElement")]
   public int[] ResponseDocument(int numentries)
   {
    int[] intarray = new int[numentries];
        for (int i=0;i<numentries;i++)
        {
       intarray[i] = i;
        }
        return intarray;
   }
}

Remarks

The ResponseElementName defines the XML element used to wrap the parameters beneath the Body element of the SOAP response when ParameterStyle is Wrapped. This is reflected in the XSD schema representing the SOAP response to the XML Web service method within the XML Web service's service description.

Applies to

Продукт Версии
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1