SoapRpcMethodAttribute.RequestElementName Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera lub ustawia element XML skojarzony z żądaniem SOAP dla metody usługi sieci Web XML.
public:
property System::String ^ RequestElementName { System::String ^ get(); void set(System::String ^ value); };
public string RequestElementName { get; set; }
member this.RequestElementName : string with get, set
Public Property RequestElementName As String
Wartość właściwości
Element XML skojarzony z żądaniem SOAP dla metody usługi sieci Web XML. Wartość domyślna to nazwa metody usługi sieci Web XML.
Przykłady
Poniższy przykład kodu ustawia RequestElementName właściwość na MyCustomRequestElement
wartość .
<%@ WebService Language="C#" Class="SoapRpcMethodSample" %>
using System.Web.Services;
using System.Web.Services.Protocols;
public class SoapRpcMethodSample
{
[WebMethod]
[SoapRpcMethod(RequestNamespace="http://www.contoso.com",RequestElementName="MyCustomRequestElement")]
public int[] RequestRpc(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(RequestNamespace :="http://www.contoso.com",RequestElementName := "MyCustomRequestElement")> _
Public Function RequestRpc(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
Uwagi
Ta właściwość jest przestarzała. Nie ma to wpływu na żadne zachowanie.