|
|
@@ -0,0 +1,92 @@
|
|
|
+//
|
|
|
+// System.Runtime.Remoting.Channels.BinaryClientFormatterSink.cs
|
|
|
+//
|
|
|
+// Author: Rodrigo Moya ([email protected])
|
|
|
+//
|
|
|
+// 2002 (C) Copyright, Ximian, Inc.
|
|
|
+//
|
|
|
+
|
|
|
+using System.Collections;
|
|
|
+using System.IO;
|
|
|
+using System.Runtime.Remoting.Messaging;
|
|
|
+
|
|
|
+namespace System.Runtime.Remoting.Channels
|
|
|
+{
|
|
|
+ public class BinaryClientFormatterSink : IClientFormatterSink,
|
|
|
+ IMessageSink, IClientChannelSink, IChannelSinkBase
|
|
|
+ {
|
|
|
+ private IClientChannelSink nextInChain;
|
|
|
+
|
|
|
+ public BinaryClientFormatterSink (IClientChannelSink nextSink)
|
|
|
+ {
|
|
|
+ nextInChain = nextSink;
|
|
|
+ }
|
|
|
+
|
|
|
+ public IClientChannelSink NextChannelSink
|
|
|
+ {
|
|
|
+ get {
|
|
|
+ return nextInChain;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public IMessageSink NextSink
|
|
|
+ {
|
|
|
+ [MonoTODO]
|
|
|
+ get { throw new NotImplementedException (); }
|
|
|
+ }
|
|
|
+
|
|
|
+ public IDictionary Properties
|
|
|
+ {
|
|
|
+ [MonoTODO]
|
|
|
+ get { throw new NotImplementedException (); }
|
|
|
+ }
|
|
|
+
|
|
|
+ [MonoTODO]
|
|
|
+ public IMessageCtrl AsyncProcessMessage (IMessage msg,
|
|
|
+ IMessageSink replySink)
|
|
|
+ {
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+
|
|
|
+ [MonoTODO]
|
|
|
+ public void AsyncProcessRequest (IClientChannelSinkStack sinkStack,
|
|
|
+ IMessage msg,
|
|
|
+ ITransportHeaders headers,
|
|
|
+ Stream stream)
|
|
|
+ {
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+
|
|
|
+ [MonoTODO]
|
|
|
+ public void AsyncProcessResponse (IClientResponseChannelSinkStack sinkStack,
|
|
|
+ object state,
|
|
|
+ ITransportHeaders headers,
|
|
|
+ Stream stream)
|
|
|
+ {
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+
|
|
|
+ [MonoTODO]
|
|
|
+ public Stream GetRequestStream (IMessage msg,
|
|
|
+ ITransportHeaders headers)
|
|
|
+ {
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+
|
|
|
+ [MonoTODO]
|
|
|
+ public void ProcessMessage (IMessage msg,
|
|
|
+ ITransportHeaders requestHeaders,
|
|
|
+ Stream requestStream,
|
|
|
+ out ITransportHeaders responseHeaders,
|
|
|
+ out Stream responseStream)
|
|
|
+ {
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+
|
|
|
+ [MonoTODO]
|
|
|
+ public IMessage SyncProcessMessage (IMessage msg)
|
|
|
+ {
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|