mscorlib(4.0.0.0) API with additions
IRemotingFormatter.cs
1 using System.IO;
4 
6 {
8  [ComVisible(true)]
9  public interface IRemotingFormatter : IFormatter
10  {
15  object Deserialize(Stream serializationStream, HeaderHandler handler);
16 
21  void Serialize(Stream serializationStream, object graph, Header[] headers);
22  }
23 }
Definition: __Canon.cs:3
Provides the remote procedure call (RPC) interface for all formatters.
Provides functionality for formatting serialized objects.
Definition: IFormatter.cs:8
Defines the out-of-band data for a call.
Definition: Header.cs:8
object Deserialize(Stream serializationStream, HeaderHandler handler)
Begins the deserialization process of a remote procedure call (RPC).
void Serialize(Stream serializationStream, object graph, Header[] headers)
Starts the serialization process of a remote procedure call (RPC).
delegate object HeaderHandler(Header[] headers)
Represents the method that will handle processing of headers on the stream during deserialization.
Provides a generic view of a sequence of bytes. This is an abstract class.To browse the ....
Definition: Stream.cs:16