| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- //
- // System.Web.UI.TemplateControl.cs
- //
- // Duncan Mak ([email protected])
- //
- // (C) Ximian, Inc.
- //
- using System;
- namespace System.Web.UI {
- public abstract class TemplateControl : Control, INamingContainer
- {
- #region Constructor
- protected TemplateControl ()
- {
- }
- #endregion
- #region Properties
- [MonoTODO]
- protected virtual int AutoHandlers {
- get { return 1; }
- set { }
- }
- [MonoTODO]
- protected virtual bool SupportAutoEvents {
- get { return false; }
- }
- #endregion
- #region Methods
- protected virtual void Construct ()
- {
- }
- [MonoTODO]
- protected virtual LiteralControl CreateResourceBasedLiteralControl (
- int offset, int size, bool fAsciiOnly)
- {
- return null;
- }
- [MonoTODO]
- protected virtual void FrameworkInitialize ()
- {
- }
- [MonoTODO]
- public Control LoadControl (string virtualPath)
- {
- return null;
- }
- [MonoTODO]
- public ITemplate LoadTemplate (string virtualPath)
- {
- return null;
- }
- [MonoTODO]
- protected virtual void OnAbortTransaction (EventArgs e)
- {
- }
- [MonoTODO]
- protected virtual void OnCommitTransaction (EventArgs e)
- {
- }
- [MonoTODO]
- protected virtual void OnError (EventArgs e)
- {
- }
- [MonoTODO]
- public Control ParseControl (string content)
- {
- return null;
- }
- [MonoTODO]
- public static object ReadStringResource (Type t)
- {
- return null;
- }
- [MonoTODO]
- protected void SetStringResourcePointer (object stringResourcePointer,
- int maxResourceOffset)
- {
- }
- [MonoTODO]
- protected void WriteUTF8ResourceString (HtmlTextWriter output, int offset,
- int size, bool fAsciiOnly)
- {
- }
- #endregion
- #region Events
- public event EventHandler AbortTransaction;
- public event EventHandler CommitTransaction;
- public event EventHandler Error;
- #endregion
- }
- }
|