RemotingClientProxy.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. //
  2. // System.Runtime.Remoting.Services.RemotingClientProxy.cs
  3. //
  4. // Author: Lluis Sanchez Gual ([email protected])
  5. //
  6. // 2004 (C) Copyright, Novell, Inc.
  7. //
  8. using System;
  9. using System.ComponentModel;
  10. namespace System.Runtime.Remoting.Services
  11. {
  12. public class RemotingClientProxy: Component
  13. {
  14. protected object _tp;
  15. protected Type _type;
  16. protected string _url;
  17. protected RemotingClientProxy()
  18. {
  19. }
  20. [MonoTODO]
  21. public bool AllowAutoRedirect
  22. {
  23. get { throw new NotImplementedException (); }
  24. set { throw new NotImplementedException (); }
  25. }
  26. [MonoTODO]
  27. public object Cookies
  28. {
  29. get { throw new NotImplementedException (); }
  30. }
  31. [MonoTODO]
  32. public string Domain
  33. {
  34. get { throw new NotImplementedException (); }
  35. set { throw new NotImplementedException (); }
  36. }
  37. [MonoTODO]
  38. public bool EnableCookies
  39. {
  40. get { throw new NotImplementedException (); }
  41. set { throw new NotImplementedException (); }
  42. }
  43. [MonoTODO]
  44. public string Password
  45. {
  46. get { throw new NotImplementedException (); }
  47. set { throw new NotImplementedException (); }
  48. }
  49. [MonoTODO]
  50. public string Path
  51. {
  52. get { throw new NotImplementedException (); }
  53. set { throw new NotImplementedException (); }
  54. }
  55. [MonoTODO]
  56. public bool PreAuthenticate
  57. {
  58. get { throw new NotImplementedException (); }
  59. set { throw new NotImplementedException (); }
  60. }
  61. [MonoTODO]
  62. public string ProxyName
  63. {
  64. get { throw new NotImplementedException (); }
  65. set { throw new NotImplementedException (); }
  66. }
  67. [MonoTODO]
  68. public int ProxyPort
  69. {
  70. get { throw new NotImplementedException (); }
  71. set { throw new NotImplementedException (); }
  72. }
  73. [MonoTODO]
  74. public int Timeout
  75. {
  76. get { throw new NotImplementedException (); }
  77. set { throw new NotImplementedException (); }
  78. }
  79. [MonoTODO]
  80. public string Url
  81. {
  82. get { throw new NotImplementedException (); }
  83. set { throw new NotImplementedException (); }
  84. }
  85. [MonoTODO]
  86. public string UserAgent
  87. {
  88. get { throw new NotImplementedException (); }
  89. set { throw new NotImplementedException (); }
  90. }
  91. [MonoTODO]
  92. public string Username
  93. {
  94. get { throw new NotImplementedException (); }
  95. set { throw new NotImplementedException (); }
  96. }
  97. [MonoTODO]
  98. protected void ConfigureProxy (Type type, string url)
  99. {
  100. }
  101. [MonoTODO]
  102. protected void ConnectProxy()
  103. {
  104. }
  105. }
  106. }