e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
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);
|
|
}
|
|
}
|
|
}
|