SoapRpcMethodAttribute.ResponseNamespace Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá nebo nastaví obor názvů XML přidružené k odpovědi SOAP pro metodu webové služby 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
Hodnota vlastnosti
Obor názvů XML přidružený k odpovědi SOAP pro metodu webové služby XML. Výchozí formát je http://tempuri.org/.
Příklady
Následující příklad kódu nastaví ResponseNamespace vlastnost na http://www.contoso.com
.
<%@ 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
Poznámky
Vlastnost ResponseNamespace se používá ve schématu XSD pro metodu webové služby XML v popisu služby.