SoapRpcMethodAttribute.ResponseElementName Propriedade
Definição
Obtém ou define o elemento XML associado à resposta SOAP para um método de serviço Web XML.Gets or sets the XML element associated with the SOAP response for an XML Web service method.
public:
property System::String ^ ResponseElementName { System::String ^ get(); void set(System::String ^ value); };
public string ResponseElementName { get; set; }
member this.ResponseElementName : string with get, set
Public Property ResponseElementName As String
Valor da propriedade
O elemento XML associado à solicitação SOAP para um método de serviço Web XML.The XML element associated with the SOAP request for an XML Web service method. O valor padrão é WebServiceNameResult, em que WebServiceName é o nome do método de serviço Web XML.The default value is WebServiceNameResult, where WebServiceName is the name of the XML Web service method.
Exemplos
O exemplo de código a seguir define a ResponseElementName propriedade como MyCustomResponseElement .The following code example sets the ResponseElementName property to MyCustomResponseElement.
<%@ WebService Language="C#" Class="SoapRpcMethodSample" %>
using System.Web.Services;
using System.Web.Services.Protocols;
public class SoapRpcMethodSample
{
[WebMethod]
[SoapRpcMethod(ResponseNamespace="http://www.contoso.com",ResponseElementName="MyCustomResponseElement")]
public int[] ResponseRpc(int numentries)
{
int[] intarray = new int[numentries];
for (int i=0;i<numentries;i++)
{
intarray[i] = i;
}
return intarray;
}
}
<%@ WebService Language="VB" Class="SoapRpcMethodSample" %>
Imports System.Web.Services
Imports System.Web.Services.Protocols
Public Class SoapRpcMethodSample
<WebMethod(),SoapRpcMethod(ResponseNamespace :="http://www.contoso.com",ResponseElementName := "MyCustomResponseElement")> _
Public Function ResponseRpc(numentries as Integer) As Integer()
Dim intarray(numentries - 1) as Integer
Dim i as Integer
For i = 0 To numentries - 1
intarray(i) = i
Next
Return intarray
End Function
End Class
Comentários
A ResponseElementName propriedade define o elemento XML usado para encapsular os parâmetros dentro do Body elemento da resposta SOAP.The ResponseElementName property defines the XML element used to encapsulate the parameters within the Body element of the SOAP response.