SoapRpcMethodAttribute.RequestNamespace プロパティ

定義

XML Web サービス メソッドに対する SOAP 要求に関連付けられている XML 名前空間を取得または設定します。

public:
 property System::String ^ RequestNamespace { System::String ^ get(); void set(System::String ^ value); };
public string RequestNamespace { get; set; }
member this.RequestNamespace : string with get, set
Public Property RequestNamespace As String

プロパティ値

String

XML Web サービス メソッドに対する SOAP 要求に関連付けられている XML 名前空間。 既定値は、http://tempuri.org/ です。

次のコード例では、プロパティhttp://www.contoso.comRequestNamespace .

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

適用対象