SoapRpcMethodAttribute.ResponseNamespace 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置与 XML Web services 方法的 SOAP 响应关联的 XML 命名空间。
public:
property System::String ^ ResponseNamespace { System::String ^ get(); void set(System::String ^ value); };
public string ResponseNamespace { get; set; }
member this.ResponseNamespace : string with get, set
Public Property ResponseNamespace As String
属性值
与 XML Web services 方法的 SOAP 响应关联的 XML 命名空间。 默认值为 http://tempuri.org/。
示例
下面的代码示例将 ResponseNamespace 属性设置为 http://www.contoso.com
。
<%@ WebService Language="C#" Class="SoapRpcMethodSample" %>
using System.Web.Services;
using System.Web.Services.Protocols;
public class SoapRpcMethodSample
{
[WebMethod]
[SoapRpcMethod(ResponseNamespace="http://www.contoso.com",ResponseElementName="MyCustomResponseElement")]
public int[] ResponseRpc(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(ResponseNamespace :="http://www.contoso.com",ResponseElementName := "MyCustomResponseElement")> _
Public Function ResponseRpc(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
注解
属性 ResponseNamespace 在 XSD 架构中用于 XML Web 服务方法的服务说明中。