SoapServerFormatterSinkProvider.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // System.Runtime.Remoting.Channels.SoapServerFormatterSinkProvider.cs
  3. //
  4. // Author: Rodrigo Moya ([email protected])
  5. //
  6. // 2002 (C) Copyright, Ximian, Inc.
  7. //
  8. using System.Collections;
  9. namespace System.Runtime.Remoting.Channels
  10. {
  11. public class SoapServerFormatterSinkProvider :
  12. IServerFormatterSinkProvider, IServerChannelSinkProvider
  13. {
  14. [MonoTODO]
  15. public SoapServerFormatterSinkProvider ()
  16. {
  17. throw new NotImplementedException ();
  18. }
  19. [MonoTODO]
  20. public SoapServerFormatterSinkProvider (IDictionary properties,
  21. ICollection providerData)
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. public IServerChannelSinkProvider Next
  26. {
  27. [MonoTODO]
  28. get {
  29. throw new NotImplementedException ();
  30. }
  31. [MonoTODO]
  32. set {
  33. throw new NotImplementedException ();
  34. }
  35. }
  36. [MonoTODO]
  37. public IServerChannelSink CreateSink (IChannelReceiver channel)
  38. {
  39. throw new NotImplementedException ();
  40. }
  41. [MonoTODO]
  42. public void GetChannelData (IChannelDataStore channelData)
  43. {
  44. throw new NotImplementedException ();
  45. }
  46. }
  47. }