SoapDocumentMethodAttribute.RequestNamespace Property

Definition

Gets or sets the namespace associated with the SOAP request for an XML Web service method.

C#
public string RequestNamespace { get; set; }

Property Value

The XML namespace associated with the SOAP request for an XML Web service method. The default is http://tempuri.org/.

Examples

The following code example sets the RequestNamespace property to http://www.contoso.com.

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

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

Remarks

RequestNamespace is used in the XSD schema for the XML Web service method within its 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