MessageContractMemberAttribute.Name 属性

定义

指定与此成员对应的元素的名称。

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

属性值

String

与此成员对应的元素的名称。 此字符串必须是有效的 XML 元素名称。

示例

下面的代码示例演示使用 MessageContractAttributeMessageHeaderAttributeMessageBodyMemberAttribute 属性创建要用作参数的自定义强类型消息的自定义消息协定。 在这种情况下,将有三个数据成员序列化到 SOAP 消息的正文元素中:sourceAccounttargetAccountamount 值(该值使用名称 transactionAmount 序列化到元素中)。 此外,IsAudited SOAP 标头元素驻留在 http://schemas.contosobank.com/auditing/2005 命名空间中。

备注

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;  

适用于