SoapDocumentMethodAttribute.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

属性值

String

与 XML Web services 方法的 SOAP 请求相关联的 XML 元素,该元素在服务说明中定义为了一个操作。 默认值是 XML Web services 方法的名称。

示例

下面的代码示例将 SOAP 请求中与 XML Web 服务方法关联的 XML 元素的名称设置为 MyCustomElement

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

Public Class SoapDocumentMethodSample

   <WebMethod(),SoapDocumentMethod(RequestNamespace :="http://www.contoso.com",RequestElementName := "MyCustomRequestElement")> _
   Public Function  RequestDocument(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

注解

定义 RequestElementName XML 元素,用于在 SOAP 请求的元素下Body包装参数(如果为WrappedParameterStyle)。 这反映在 XSD 架构中,该架构表示对 XML Web 服务的服务说明中的 XML Web 服务方法的 SOAP 请求。

适用于