Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Web/System.Web.UI/TemplateControl.cs')
-rwxr-xr-xmcs/class/System.Web/System.Web.UI/TemplateControl.cs115
1 files changed, 115 insertions, 0 deletions
diff --git a/mcs/class/System.Web/System.Web.UI/TemplateControl.cs b/mcs/class/System.Web/System.Web.UI/TemplateControl.cs
new file mode 100755
index 00000000000..2a878d03d45
--- /dev/null
+++ b/mcs/class/System.Web/System.Web.UI/TemplateControl.cs
@@ -0,0 +1,115 @@
+//
+// System.Web.UI.TemplateControl.cs
+//
+// Duncan Mak (duncan@ximian.com)
+//
+// (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
+ }
+}