MessageContractMemberAttribute.Namespace 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定對應於這個成員的項目命名空間。
public:
property System::String ^ Namespace { System::String ^ get(); void set(System::String ^ value); };
public string Namespace { get; set; }
member this.Namespace : string with get, set
Public Property Namespace As String
屬性值
對應於這個成員的項目命名空間 URI。
範例
下列程式碼範例示範使用 、 MessageHeaderAttribute 和 MessageBodyMemberAttribute 屬性的自訂訊息合約 MessageContractAttribute , (這些屬性全都繼承自 MessageContractMemberAttribute) ,以建立自訂型別訊息以用於作業中。 在此案例中,有三個序列化成 SOAP 訊息本文項目的成員:sourceAccount
、targetAccount
以及 amount
值 (序列化成名稱為 transactionAmount
的項目)。 此外,IsAudited
SOAP 標頭項目位於 http://schemas.contosobank.com/auditing/2005
命名空間中,而 sourceAccount
已經過加密和數位簽署。
注意
Operation
和 Account
型別必須具有資料合約。
[MessageContract]
public class BankingTransaction
{
[MessageHeader] public Operation operation;
[MessageHeader(Namespace="http://schemas.contosobank.com/auditing/2005")] public bool IsAudited;
[MessageBody] public Account sourceAccount;
[MessageBody] public Account targetAccount;
[MessageBody(Name="transactionAmount")] public int amount;