BinaryServerFormatterSinkProvider.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //
  2. // System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider.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 BinaryServerFormatterSinkProvider :
  12. IServerFormatterSinkProvider, IServerChannelSinkProvider
  13. {
  14. [MonoTODO]
  15. public BinaryServerFormatterSinkProvider ()
  16. {
  17. throw new NotImplementedException ();
  18. }
  19. [MonoTODO]
  20. public BinaryServerFormatterSinkProvider (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. }