| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- //
- // System.Web.UI.Page.cs
- //
- // Duncan Mak ([email protected])
- //
- // (C) Ximian, Inc.
- //
- using System;
- using System.Collections;
- using System.Security.Principal;
- using System.Web;
- namespace System.Web.UI {
- public class Page : TemplateControl, IHttpHandler
- {
- #region Constructor
- public Page ()
- {
- }
- #endregion
- #region Fields
- // protected const string postEventArgumentID;
- // protected const string postEventSourceID;
- #endregion
- #region Properties
- public HttpApplicationState Application {
- get { throw new NotImplementedException (); }
- }
- bool AspCompatMode {
- set { throw new NotImplementedException (); }
- }
- bool Buffer {
- set { throw new NotImplementedException (); }
- }
- // public Cache Cache {
- // get { throw new NotImplementedException (); }
- // }
- public string ClientTarget {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- int CodePage {
- set { throw new NotImplementedException (); }
- }
- string ContentType {
- set { throw new NotImplementedException (); }
- }
- protected override HttpContext Context {
- get { throw new NotImplementedException (); }
- }
- string Culture {
- set { throw new NotImplementedException (); }
- }
- public override bool EnableViewState {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- // public override bool EnableViewStateMac {
- // get { throw new NotImplementedException (); }
- // set { throw new NotImplementedException (); }
- // }
- public string ErrorPage {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- ArrayList FileDependencies {
- set { throw new NotImplementedException (); }
- }
- public override string ID {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- public bool IsPostBack {
- get { throw new NotImplementedException (); }
- }
- public bool IsReusable {
- get { throw new NotImplementedException (); }
- }
- public bool IsValid {
- get { throw new NotImplementedException (); }
- }
- int LCID {
- set { throw new NotImplementedException (); }
- }
- public HttpRequest Request {
- get { throw new NotImplementedException (); }
- }
- public HttpResponse Response {
- get { throw new NotImplementedException (); }
- }
- string ResponseEncoding {
- set { throw new NotImplementedException (); }
- }
- public HttpServerUtility Server {
- get { throw new NotImplementedException (); }
- }
- public virtual HttpSessionState Session {
- get { throw new NotImplementedException (); }
- }
- public bool SmartNavigation {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- public TraceContext Trace {
- get { throw new NotImplementedException (); }
- }
- bool TraceEnabled {
- set { throw new NotImplementedException (); }
- }
- TraceMode TraceModeEncoding {
- set { throw new NotImplementedException (); }
- }
- int TransactionMode {
- set { throw new NotImplementedException (); }
- }
- string UICulture {
- set { throw new NotImplementedException (); }
- }
- public IPrincipal User {
- get { throw new NotImplementedException (); }
- }
- public ValidatorCollection Validators {
- get { throw new NotImplementedException (); }
- }
- public override bool Visible {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- #endregion
- #region Methods
- public string GetPostBackClientEvent (Control control, string argument)
- {
- throw new NotImplementedException ();
- }
- public string GetPostBackClientHyperlink (Control control, string argument)
- {
- throw new NotImplementedException ();
- }
- public string GetPostBackEventReference (Control control)
- {
- throw new NotImplementedException ();
- }
-
- public string GetPostBackEventReference (Control control, string argument)
- {
- throw new NotImplementedException ();
- }
- public void ProcessRequest (HttpContext context)
- {
- throw new NotImplementedException ();
- }
- //
- // Wacky temporary API for making it to compile
- //
- public void RegisterClientScriptFile (string a, string b, string c)
- {
- throw new NotImplementedException ();
- }
- public void RegisterRequiresPostBack (Control control)
- {
- }
- public void RegisterRequiresRaiseEvent (IPostBackEventHandler control)
- {
- }
- public void RegisterViewStateHandler ()
- {
- }
- public virtual void Validate ()
- {
- }
- public virtual void VerifyRenderingInServerForm (Control control)
- {
- }
- #endregion
- }
- }
|