PageAdapter.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. //
  2. // System.Web.UI.Adapters.PageAdapter
  3. //
  4. // Author:
  5. // Dick Porter <[email protected]>
  6. //
  7. // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
  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. #if NET_2_0
  29. using System.Web.UI;
  30. using System.Web.UI.WebControls;
  31. using System.Collections;
  32. using System.Collections.Specialized;
  33. namespace System.Web.UI.Adapters
  34. {
  35. public abstract class PageAdapter : ControlAdapter
  36. {
  37. protected PageAdapter ()
  38. {
  39. }
  40. [MonoTODO("Not implemented")]
  41. public virtual StringCollection CacheVaryByHeaders
  42. {
  43. get {
  44. throw new NotImplementedException ();
  45. }
  46. }
  47. [MonoTODO("Not implemented")]
  48. public virtual StringCollection CacheVaryByParams
  49. {
  50. get {
  51. throw new NotImplementedException ();
  52. }
  53. }
  54. [MonoTODO("Not implemented")]
  55. protected string ClientState
  56. {
  57. get {
  58. throw new NotImplementedException ();
  59. }
  60. }
  61. [MonoTODO("Not implemented")]
  62. public virtual NameValueCollection DeterminePostBackMode ()
  63. {
  64. throw new NotImplementedException ();
  65. }
  66. [MonoTODO("Not implemented")]
  67. public virtual ICollection GetRadioButtonsByGroup (string groupName)
  68. {
  69. throw new NotImplementedException ();
  70. }
  71. [MonoTODO("Not implemented")]
  72. public virtual PageStatePersister GetStatePersister ()
  73. {
  74. throw new NotImplementedException ();
  75. }
  76. [MonoTODO("Not implemented")]
  77. public virtual void RegisterRadioButton (RadioButton radioButton)
  78. {
  79. throw new NotImplementedException ();
  80. }
  81. [MonoTODO("Not implemented")]
  82. public virtual void RenderBeginHyperlink (HtmlTextWriter w,
  83. string targetUrl,
  84. bool encodeUrl,
  85. string softKeyLabel)
  86. {
  87. throw new NotImplementedException ();
  88. }
  89. [MonoTODO("Not implemented")]
  90. public virtual void RenderBeginHyperlink (HtmlTextWriter w,
  91. string targetUrl,
  92. bool encodeUrl,
  93. string softKeyLabel,
  94. string accessKey)
  95. {
  96. throw new NotImplementedException ();
  97. }
  98. [MonoTODO("Not implemented")]
  99. public virtual void RenderEndHyperlink (HtmlTextWriter w)
  100. {
  101. throw new NotImplementedException ();
  102. }
  103. [MonoTODO("Not implemented")]
  104. public virtual void RenderPostBackEvent (HtmlTextWriter w,
  105. string target,
  106. string argument,
  107. string softKeyLabel,
  108. string text)
  109. {
  110. throw new NotImplementedException ();
  111. }
  112. [MonoTODO("Not implemented")]
  113. public virtual void RenderPostBackEvent (HtmlTextWriter w,
  114. string target,
  115. string argument,
  116. string softKeyLabel,
  117. string text,
  118. string postUrl,
  119. string accessKey)
  120. {
  121. throw new NotImplementedException ();
  122. }
  123. [MonoTODO("Not implemented")]
  124. protected void RenderPostBackEvent (HtmlTextWriter w,
  125. string target,
  126. string argument,
  127. string softKeyLabel,
  128. string text,
  129. string postUrl,
  130. string accessKey,
  131. bool encode)
  132. {
  133. throw new NotImplementedException ();
  134. }
  135. [MonoTODO("Not implemented")]
  136. public virtual string TransformText (string text)
  137. {
  138. throw new NotImplementedException ();
  139. }
  140. [MonoTODO("Not implemented")]
  141. protected internal virtual string GetPostBackFormReference (string formID)
  142. {
  143. throw new NotImplementedException ();
  144. }
  145. }
  146. }
  147. #endif