File: System\ServiceModel\Description\MessagePropertyDescription.cs
Project: ndp\cdf\src\WCF\ServiceModel\System.ServiceModel.csproj (System.ServiceModel)
//------------------------------------------------------------
// 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);
        }
    }
}