SoapRpcMethodAttribute.RequestElementName 属性

定义

获取或设置与 XML Web services 方法的 SOAP 请求关联的 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

属性值

与 XML Web services 方法的 SOAP 请求关联的 XML 元素。 默认值是 XML Web services 方法的名称。

示例

下面的代码示例将 RequestElementName 属性设置为 MyCustomRequestElement

<%@ 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

注解

此属性已过时。 它不会影响任何行为。

适用于