IRemotingFormatter.cs 503 B

1234567891011121314151617181920
  1. //
  2. // System.Runtime.Remoting.Messaging.IRemotingFormatter..cs
  3. //
  4. // Author:
  5. // Duncan Mak ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. using System.IO;
  10. using System.Reflection;
  11. using System.Runtime.Serialization;
  12. namespace System.Runtime.Remoting.Messaging {
  13. public interface IRemotingFormatter : IFormatter {
  14. object Deserialize (Stream serializationStream, HeaderHandler handler);
  15. void Serialize (Stream serializationStream, object graph, Header [] handlers);
  16. }
  17. }