SoapDocumentMethodAttribute.ResponseNamespace Свойство

Определение

Получает или задает пространство имен XML, сопоставленное с ответом SOAP для метода веб-службы XML.

public:
 property System::String ^ ResponseNamespace { System::String ^ get(); void set(System::String ^ value); };
public string ResponseNamespace { get; set; }
member this.ResponseNamespace : string with get, set
Public Property ResponseNamespace As String

Значение свойства

String

Пространство имен, сопоставленное с ответом SOAP для метода веб-службы XML. Значение по умолчанию — http://tempuri.org/.

Примеры

В следующем примере кода для свойства задается ResponseNamespace значение http://www.contoso.com.

<%@ 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;
   }
}
<%@ WebService Language="VB" Class="SoapDocumentMethodSample" %>
    
Imports System.Web.Services
Imports System.Web.Services.Protocols

Public Class SoapDocumentMethodSample

   <WebMethod(),SoapDocumentMethod(ResponseNamespace :="http://www.contoso.com",ResponseElementName := "MyCustomResponseElement")> _
   Public Function  ResponseDocument(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

Комментарии

Свойство ResponseNamespace используется в схеме XSD для метода веб-службы XML в описании службы.

Применяется к