MessageContractMemberAttribute.Namespace 属性

定义

指定与此成员对应的元素的命名空间。

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

属性值

String

与此成员对应的元素的命名空间 URI。

示例

下面的代码示例演示了一个自定义消息协定,该协定使用MessageContractAttributeMessageHeaderAttributeMessageBodyMemberAttribute (所有继承自MessageContractMemberAttribute) 的属性,以创建自定义类型化消息以用于操作。 在这种情况下,将有三个成员序列化到 SOAP 消息的正文元素中:sourceAccounttargetAccountamount 值(该值使用名称 transactionAmount 序列化到元素中)。 此外,IsAudited SOAP 标头元素驻留在 http://schemas.contosobank.com/auditing/2005 命名空间中,而且还对 sourceAccount 进行加密和数字签名。

备注

OperationAccount 类型必须具有数据协定。

[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;  

适用于