2002-08-10 Rodrigo Moya <rodrigo@ximian.com>
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Channels / ServerChannelSinkStack.cs
1 //
2 // System.Runtime.Remoting.Channels.ServerChannelSinkStack.cs
3 //
4 // Author: Rodrigo Moya (rodrigo@ximian.com)
5 //
6 // 2002 (C) Copyright, Ximian, Inc.
7 //
8
9 using System.IO;
10 using System.Runtime.Remoting.Messaging;
11
12 namespace System.Runtime.Remoting.Channels
13 {
14         public class ServerChannelSinkStack : IServerChannelSinkStack,
15                 IServerResponseChannelSinkStack
16         {
17                 public ServerChannelSinkStack ()
18                 {
19                 }
20
21                 [MonoTODO]
22                 public Stream GetResponseStream (IMessage msg,
23                                                  ITransportHeaders headers)
24                 {
25                         throw new NotImplementedException ();
26                 }
27
28                 [MonoTODO]
29                 public object Pop (IServerChannelSink sink)
30                 {
31                         throw new NotImplementedException ();
32                 }
33
34                 [MonoTODO]
35                 public void Push (IServerChannelSink sink, object state)
36                 {
37                         throw new NotImplementedException ();
38                 }
39
40                 [MonoTODO]
41                 public void ServerCallback (IAsyncResult ar)
42                 {
43                         throw new NotImplementedException ();
44                 }
45
46                 [MonoTODO]
47                 public void Store (IServerChannelSink sink, object state)
48                 {
49                         throw new NotImplementedException ();
50                 }
51
52                 [MonoTODO]
53                 public void StoreAndDispatch (IServerChannelSink sink, object state)
54                 {
55                         throw new NotImplementedException ();
56                 }
57
58                 [MonoTODO]
59                 public void AsyncProcessResponse (IMessage msg, ITransportHeaders headers, Stream stream)
60                 {
61                         throw new NotImplementedException ();
62                 }
63         }
64 }