// // System.Messaging // // Authors: // Peter Van Isacker (sclytrack@planetinternet.be) // // (C) 2003 Peter Van Isacker // using System; namespace System.Messaging { public class ActiveXMessageFormatter: IMessageFormatter, ICloneable { [MonoTODO] public ActiveXMessageFormatter() { } [MonoTODO] public bool CanRead(Message message) { throw new NotImplementedException(); } [MonoTODO] public object Clone() { throw new NotImplementedException(); } [MonoTODO] public static void InitStreamedObject(object streamedObject) { throw new NotImplementedException(); } [MonoTODO] public object Read(Message message) { throw new NotImplementedException(); } [MonoTODO] public void Write(Message message, object obj) { throw new NotImplementedException(); } [MonoTODO] ~ActiveXMessageFormatter() { } } }