RemotingClientProxy.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. //
  9. // Permission is hereby granted, free of charge, to any person obtaining
  10. // a copy of this software and associated documentation files (the
  11. // "Software"), to deal in the Software without restriction, including
  12. // without limitation the rights to use, copy, modify, merge, publish,
  13. // distribute, sublicense, and/or sell copies of the Software, and to
  14. // permit persons to whom the Software is furnished to do so, subject to
  15. // the following conditions:
  16. //
  17. // The above copyright notice and this permission notice shall be
  18. // included in all copies or substantial portions of the Software.
  19. //
  20. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  21. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  22. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  23. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  24. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  25. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  26. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  27. //
  28. using System;
  29. using System.ComponentModel;
  30. namespace System.Runtime.Remoting.Services
  31. {
  32. public class RemotingClientProxy: Component
  33. {
  34. protected object _tp;
  35. protected Type _type;
  36. protected string _url;
  37. protected RemotingClientProxy()
  38. {
  39. }
  40. [MonoTODO]
  41. public bool AllowAutoRedirect
  42. {
  43. get { throw new NotImplementedException (); }
  44. set { throw new NotImplementedException (); }
  45. }
  46. [MonoTODO]
  47. public object Cookies
  48. {
  49. get { throw new NotImplementedException (); }
  50. }
  51. [MonoTODO]
  52. public string Domain
  53. {
  54. get { throw new NotImplementedException (); }
  55. set { throw new NotImplementedException (); }
  56. }
  57. [MonoTODO]
  58. public bool EnableCookies
  59. {
  60. get { throw new NotImplementedException (); }
  61. set { throw new NotImplementedException (); }
  62. }
  63. [MonoTODO]
  64. public string Password
  65. {
  66. get { throw new NotImplementedException (); }
  67. set { throw new NotImplementedException (); }
  68. }
  69. [MonoTODO]
  70. public string Path
  71. {
  72. get { throw new NotImplementedException (); }
  73. set { throw new NotImplementedException (); }
  74. }
  75. [MonoTODO]
  76. public bool PreAuthenticate
  77. {
  78. get { throw new NotImplementedException (); }
  79. set { throw new NotImplementedException (); }
  80. }
  81. [MonoTODO]
  82. public string ProxyName
  83. {
  84. get { throw new NotImplementedException (); }
  85. set { throw new NotImplementedException (); }
  86. }
  87. [MonoTODO]
  88. public int ProxyPort
  89. {
  90. get { throw new NotImplementedException (); }
  91. set { throw new NotImplementedException (); }
  92. }
  93. [MonoTODO]
  94. public int Timeout
  95. {
  96. get { throw new NotImplementedException (); }
  97. set { throw new NotImplementedException (); }
  98. }
  99. [MonoTODO]
  100. public string Url
  101. {
  102. get { throw new NotImplementedException (); }
  103. set { throw new NotImplementedException (); }
  104. }
  105. [MonoTODO]
  106. public string UserAgent
  107. {
  108. get { throw new NotImplementedException (); }
  109. set { throw new NotImplementedException (); }
  110. }
  111. [MonoTODO]
  112. public string Username
  113. {
  114. get { throw new NotImplementedException (); }
  115. set { throw new NotImplementedException (); }
  116. }
  117. [MonoTODO]
  118. protected void ConfigureProxy (Type type, string url)
  119. {
  120. }
  121. [MonoTODO]
  122. protected void ConnectProxy()
  123. {
  124. }
  125. }
  126. }