|
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*============================================================
**
** Interface: IRemotingFormatter;
**
**
** Purpose: The interface for all formatters.
**
**
===========================================================*/
namespace System.Runtime.Remoting.Messaging {
using System;
using System.IO;
using System.Runtime.Serialization;
[System.Runtime.InteropServices.ComVisible(true)]
public interface IRemotingFormatter : IFormatter {
// Begin the process of deserialization. For purposes of serialization,
// this will probably rely on a stream that has been connected to the
// formatter through other means.
//
Object Deserialize(Stream serializationStream, HeaderHandler handler);
// Start the process of serialization. The object graph commencing at
// graph will be serialized to the appropriate backing store.
void Serialize(Stream serializationStream, Object graph, Header[] headers);
}
}
|