| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- //
- // 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 ();
- }
- }
- }
|