Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.Runtime.Remoting.Channels/ServerChannelSinkStack.cs')
-rw-r--r--mcs/class/corlib/System.Runtime.Remoting.Channels/ServerChannelSinkStack.cs64
1 files changed, 0 insertions, 64 deletions
diff --git a/mcs/class/corlib/System.Runtime.Remoting.Channels/ServerChannelSinkStack.cs b/mcs/class/corlib/System.Runtime.Remoting.Channels/ServerChannelSinkStack.cs
deleted file mode 100644
index 877f2db0070..00000000000
--- a/mcs/class/corlib/System.Runtime.Remoting.Channels/ServerChannelSinkStack.cs
+++ /dev/null
@@ -1,64 +0,0 @@
-//
-// System.Runtime.Remoting.Channels.ServerChannelSinkStack.cs
-//
-// Author: Rodrigo Moya (rodrigo@ximian.com)
-//
-// 2002 (C) Copyright, Ximian, Inc.
-//
-
-using System.IO;
-using System.Runtime.Remoting.Messaging;
-
-namespace System.Runtime.Remoting.Channels
-{
- public class ServerChannelSinkStack : IServerChannelSinkStack,
- IServerResponseChannelSinkStack
- {
- public ServerChannelSinkStack ()
- {
- }
-
- [MonoTODO]
- public Stream GetResponseStream (IMessage msg,
- ITransportHeaders headers)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public object Pop (IServerChannelSink sink)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void Push (IServerChannelSink sink, object state)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void ServerCallback (IAsyncResult ar)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void Store (IServerChannelSink sink, object state)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void StoreAndDispatch (IServerChannelSink sink, object state)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void AsyncProcessResponse (IMessage msg, ITransportHeaders headers, Stream stream)
- {
- throw new NotImplementedException ();
- }
- }
-}