BinaryClientFormatterSinkProvider.cs 976 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // System.Runtime.Remoting.Channels.BinaryClientFormatterSinkProvider.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 BinaryClientFormatterSinkProvider :
  12. IClientFormatterSinkProvider, IClientChannelSinkProvider
  13. {
  14. [MonoTODO]
  15. public BinaryClientFormatterSinkProvider ()
  16. {
  17. throw new NotImplementedException ();
  18. }
  19. [MonoTODO]
  20. public BinaryClientFormatterSinkProvider (IDictionary properties,
  21. ICollection providerData)
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. public IClientChannelSinkProvider Next
  26. {
  27. get { throw new NotImplementedException (); }
  28. set { throw new NotImplementedException (); }
  29. }
  30. [MonoTODO]
  31. public IClientChannelSink CreateSink (IChannelSender channel,
  32. string url,
  33. object remoteChannelData)
  34. {
  35. throw new NotImplementedException ();
  36. }
  37. }
  38. }