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:
authorGaurav Vaish <gvaish@mono-cvs.ximian.com>2003-04-29 17:17:31 +0400
committerGaurav Vaish <gvaish@mono-cvs.ximian.com>2003-04-29 17:17:31 +0400
commitb6ea95d397b99b4c068ca0e5bbf47a8f0304143a (patch)
treea13394b0f4c02e9d1c162ed472ad6232ee821b06 /mcs/class/System.Web.Mobile
parent78239d51b217317f73784b5374bbf1f34433b02f (diff)
2003-04-29 Gaurav Vaish <gvaish_mono AT lycos.com>
* MobilePage.cs : Adapter { get; } - Stubbed. svn path=/trunk/mcs/; revision=14107
Diffstat (limited to 'mcs/class/System.Web.Mobile')
-rw-r--r--mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/ChangeLog4
-rw-r--r--mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/MobilePage.cs8
2 files changed, 12 insertions, 0 deletions
diff --git a/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/ChangeLog b/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/ChangeLog
index 91926ad11a3..f92d52227d7 100644
--- a/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/ChangeLog
+++ b/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/ChangeLog
@@ -1,4 +1,8 @@
+2003-04-29 Gaurav Vaish <gvaish_mono AT lycos.com>
+
+ * MobilePage.cs : Adapter { get; } - Stubbed.
+
2003-04-08 Gaurav Vaish <gvaish_mono AT lycos.com>
* Style.cs : Implements interfaces now.
diff --git a/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/MobilePage.cs b/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/MobilePage.cs
index e2d4997c431..71462749e5c 100644
--- a/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/MobilePage.cs
+++ b/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/MobilePage.cs
@@ -40,5 +40,13 @@ namespace System.Web.UI.MobileControls
{
throw new NotImplementedException();
}
+
+ public IPageAdapter Adapter
+ {
+ get
+ {
+ throw new NotImplementedException();
+ }
+ }
}
}