31 lines
840 B
C#
31 lines
840 B
C#
|
//------------------------------------------------------------
|
||
|
// 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);
|
||
|
}
|
||
|
}
|
||
|
}
|