다음을 통해 공유


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

속성 값

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

설명

이 속성은 사용되지 않습니다. 모든 동작에는 영향을 주지 않습니다.

적용 대상