1 //------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //------------------------------------------------------------
4 namespace System.ServiceModel.Channels
5 {
6     public interface IMessageProperty
7     {
CreateCopy()8         IMessageProperty CreateCopy();
9     }
10 }
11