Page.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. //
  2. // System.Web.UI.Page.cs
  3. //
  4. // Duncan Mak ([email protected])
  5. //
  6. // (C) Ximian, Inc.
  7. //
  8. using System;
  9. using System.Collections;
  10. using System.Security.Principal;
  11. using System.Web;
  12. namespace System.Web.UI {
  13. public class Page : TemplateControl, IHttpHandler
  14. {
  15. #region Constructor
  16. public Page ()
  17. {
  18. }
  19. #endregion
  20. #region Fields
  21. // protected const string postEventArgumentID;
  22. // protected const string postEventSourceID;
  23. #endregion
  24. #region Properties
  25. public HttpApplicationState Application {
  26. get { throw new NotImplementedException (); }
  27. }
  28. bool AspCompatMode {
  29. set { throw new NotImplementedException (); }
  30. }
  31. bool Buffer {
  32. set { throw new NotImplementedException (); }
  33. }
  34. // public Cache Cache {
  35. // get { throw new NotImplementedException (); }
  36. // }
  37. public string ClientTarget {
  38. get { throw new NotImplementedException (); }
  39. set { throw new NotImplementedException (); }
  40. }
  41. int CodePage {
  42. set { throw new NotImplementedException (); }
  43. }
  44. string ContentType {
  45. set { throw new NotImplementedException (); }
  46. }
  47. protected override HttpContext Context {
  48. get { throw new NotImplementedException (); }
  49. }
  50. string Culture {
  51. set { throw new NotImplementedException (); }
  52. }
  53. public override bool EnableViewState {
  54. get { throw new NotImplementedException (); }
  55. set { throw new NotImplementedException (); }
  56. }
  57. // public override bool EnableViewStateMac {
  58. // get { throw new NotImplementedException (); }
  59. // set { throw new NotImplementedException (); }
  60. // }
  61. public string ErrorPage {
  62. get { throw new NotImplementedException (); }
  63. set { throw new NotImplementedException (); }
  64. }
  65. ArrayList FileDependencies {
  66. set { throw new NotImplementedException (); }
  67. }
  68. public override string ID {
  69. get { throw new NotImplementedException (); }
  70. set { throw new NotImplementedException (); }
  71. }
  72. public bool IsPostBack {
  73. get { throw new NotImplementedException (); }
  74. }
  75. public bool IsReusable {
  76. get { throw new NotImplementedException (); }
  77. }
  78. public bool IsValid {
  79. get { throw new NotImplementedException (); }
  80. }
  81. int LCID {
  82. set { throw new NotImplementedException (); }
  83. }
  84. public HttpRequest Request {
  85. get { throw new NotImplementedException (); }
  86. }
  87. public HttpResponse Response {
  88. get { throw new NotImplementedException (); }
  89. }
  90. string ResponseEncoding {
  91. set { throw new NotImplementedException (); }
  92. }
  93. public HttpServerUtility Server {
  94. get { throw new NotImplementedException (); }
  95. }
  96. public virtual HttpSessionState Session {
  97. get { throw new NotImplementedException (); }
  98. }
  99. public bool SmartNavigation {
  100. get { throw new NotImplementedException (); }
  101. set { throw new NotImplementedException (); }
  102. }
  103. public TraceContext Trace {
  104. get { throw new NotImplementedException (); }
  105. }
  106. bool TraceEnabled {
  107. set { throw new NotImplementedException (); }
  108. }
  109. TraceMode TraceModeEncoding {
  110. set { throw new NotImplementedException (); }
  111. }
  112. int TransactionMode {
  113. set { throw new NotImplementedException (); }
  114. }
  115. string UICulture {
  116. set { throw new NotImplementedException (); }
  117. }
  118. public IPrincipal User {
  119. get { throw new NotImplementedException (); }
  120. }
  121. public ValidatorCollection Validators {
  122. get { throw new NotImplementedException (); }
  123. }
  124. public override bool Visible {
  125. get { throw new NotImplementedException (); }
  126. set { throw new NotImplementedException (); }
  127. }
  128. #endregion
  129. #region Methods
  130. public string GetPostBackClientEvent (Control control, string argument)
  131. {
  132. throw new NotImplementedException ();
  133. }
  134. public string GetPostBackClientHyperlink (Control control, string argument)
  135. {
  136. throw new NotImplementedException ();
  137. }
  138. public string GetPostBackEventReference (Control control)
  139. {
  140. throw new NotImplementedException ();
  141. }
  142. public string GetPostBackEventReference (Control control, string argument)
  143. {
  144. throw new NotImplementedException ();
  145. }
  146. public void ProcessRequest (HttpContext context)
  147. {
  148. throw new NotImplementedException ();
  149. }
  150. //
  151. // Wacky temporary API for making it to compile
  152. //
  153. public void RegisterClientScriptFile (string a, string b, string c)
  154. {
  155. throw new NotImplementedException ();
  156. }
  157. public void RegisterRequiresPostBack (Control control)
  158. {
  159. }
  160. public void RegisterRequiresRaiseEvent (IPostBackEventHandler control)
  161. {
  162. }
  163. public void RegisterViewStateHandler ()
  164. {
  165. }
  166. public virtual void Validate ()
  167. {
  168. }
  169. public virtual void VerifyRenderingInServerForm (Control control)
  170. {
  171. }
  172. #endregion
  173. }
  174. }