SinkProviderData.cs 645 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // System.Runtime.Remoting.Channels.SinkProviderData.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 SinkProviderData
  12. {
  13. private string sinkName;
  14. public SinkProviderData (string name)
  15. {
  16. sinkName = name;
  17. }
  18. public IList Children
  19. {
  20. [MonoTODO]
  21. get {
  22. throw new NotImplementedException ();
  23. }
  24. }
  25. public string Name
  26. {
  27. get {
  28. return sinkName;
  29. }
  30. }
  31. public IDictionary Properties
  32. {
  33. [MonoTODO]
  34. get {
  35. throw new NotImplementedException ();
  36. }
  37. }
  38. }
  39. }