SoapDocumentMethodAttribute.ResponseElementName 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定與 XML Web Service 方法之 SOAP 回應關聯的 XML 項目。
public:
property System::String ^ ResponseElementName { System::String ^ get(); void set(System::String ^ value); };
public string ResponseElementName { get; set; }
member this.ResponseElementName : string with get, set
Public Property ResponseElementName As String
屬性值
與 XML Web Service 方法之 SOAP 要求關聯的 XML 項目。 預設值為 WebServiceNameResult,其中 WebServiceName 是 XML Web Service 方法的名稱。
範例
下列程式碼範例會在 SOAP 回應 MyCustomResponseElement
中設定與 XML Web 服務方法相關聯的 XML 專案名稱。
<%@ WebService Language="C#" Class="SoapDocumentMethodSample" %>
using System.Web.Services;
using System.Web.Services.Protocols;
public class SoapDocumentMethodSample
{
[WebMethod]
[SoapDocumentMethod(ResponseNamespace="http://www.contoso.com",ResponseElementName="MyCustomResponseElement")]
public int[] ResponseDocument(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(ResponseNamespace :="http://www.contoso.com",ResponseElementName := "MyCustomResponseElement")> _
Public Function ResponseDocument(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
備註
ResponseElementName會定義 XML 專案,當 為 Wrapped 時 ParameterStyle ,用來將參數包裝在 SOAP 回應的 元素下方 Body
。 這反映在 XSD 架構中,表示 XML Web 服務服務描述中 XML Web 服務方法的 SOAP 回應。