| 123456789101112131415161718192021222324252627282930 |
- //------------------------------------------------------------
- // Copyright (c) Microsoft Corporation. All rights reserved.
- //------------------------------------------------------------
- namespace System.ServiceModel.Description
- {
- using System;
- using System.ServiceModel.Channels;
- using System.Collections.Generic;
- using System.Text;
- using System.Runtime.Serialization;
- public class MessagePropertyDescription : MessagePartDescription
- {
- public MessagePropertyDescription(string name)
- : base(name, "")
- {
- }
- internal MessagePropertyDescription(MessagePropertyDescription other)
- : base(other)
- {
- }
- internal override MessagePartDescription Clone()
- {
- return new MessagePropertyDescription(this);
- }
- }
- }
|