MessagePropertyDescription.cs 840 B

123456789101112131415161718192021222324252627282930
  1. //------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //------------------------------------------------------------
  4. namespace System.ServiceModel.Description
  5. {
  6. using System;
  7. using System.ServiceModel.Channels;
  8. using System.Collections.Generic;
  9. using System.Text;
  10. using System.Runtime.Serialization;
  11. public class MessagePropertyDescription : MessagePartDescription
  12. {
  13. public MessagePropertyDescription(string name)
  14. : base(name, "")
  15. {
  16. }
  17. internal MessagePropertyDescription(MessagePropertyDescription other)
  18. : base(other)
  19. {
  20. }
  21. internal override MessagePartDescription Clone()
  22. {
  23. return new MessagePropertyDescription(this);
  24. }
  25. }
  26. }