SdlChannelSink.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. //
  2. // System.Runtime.Remoting.MetadataServices.SdlChannelSink
  3. //
  4. // Authors:
  5. // Martin Willemoes Hansen ([email protected])
  6. //
  7. // (C) 2003 Martin Willemoes Hansen
  8. //
  9. using System.Runtime.Remoting.Channels;
  10. using System.Runtime.Remoting.Messaging;
  11. using System.IO;
  12. using System.Collections;
  13. namespace System.Runtime.Remoting.MetadataServices
  14. {
  15. public class SdlChannelSink : IServerChannelSink, IChannelSinkBase
  16. {
  17. [MonoTODO]
  18. public SdlChannelSink()
  19. {
  20. }
  21. public IServerChannelSink NextChannelSink {
  22. [MonoTODO]
  23. get { throw new NotImplementedException(); }
  24. }
  25. public IDictionary Properties {
  26. [MonoTODO]
  27. get { throw new NotImplementedException(); }
  28. }
  29. [MonoTODO]
  30. public void AsyncProcessResponse (IServerResponseChannelSinkStack sinkStack,
  31. object state,
  32. IMessage msg,
  33. ITransportHeaders headers,
  34. Stream stream)
  35. {
  36. throw new NotImplementedException();
  37. }
  38. [MonoTODO]
  39. public Stream GetResponseStream (IServerResponseChannelSinkStack sinkStack,
  40. object state,
  41. IMessage msg,
  42. ITransportHeaders headers)
  43. {
  44. throw new NotImplementedException();
  45. }
  46. [MonoTODO]
  47. public ServerProcessing ProcessMessage (IServerChannelSinkStack sinkStack,
  48. IMessage requestMsg,
  49. ITransportHeaders requestHeaders,
  50. Stream requestStream,
  51. out IMessage responseMsg,
  52. out ITransportHeaders responseHeaders,
  53. out Stream responseStream)
  54. {
  55. throw new NotImplementedException();
  56. }
  57. [MonoTODO]
  58. ~SdlChannelSink()
  59. {
  60. }
  61. }
  62. }