// // System.Runtime.Remoting.Channels.TransportHeaders.cs // // Author: Rodrigo Moya (rodrigo@ximian.com) // // 2002 (C) Copyright, Ximian, Inc. // using System.Collections; namespace System.Runtime.Remoting.Channels { public class TransportHeaders : ITransportHeaders { [MonoTODO] public TransportHeaders () { throw new NotImplementedException (); } public object this[object key] { [MonoTODO] get { throw new NotImplementedException (); } [MonoTODO] set { throw new NotImplementedException (); } } [MonoTODO] public IEnumerator GetEnumerator () { throw new NotImplementedException (); } } }