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/DataBinder.cs')
-rwxr-xr-xmcs/class/System.Web/System.Web.UI/DataBinder.cs55
1 files changed, 55 insertions, 0 deletions
diff --git a/mcs/class/System.Web/System.Web.UI/DataBinder.cs b/mcs/class/System.Web/System.Web.UI/DataBinder.cs
new file mode 100755
index 00000000000..6aa5ab9e64a
--- /dev/null
+++ b/mcs/class/System.Web/System.Web.UI/DataBinder.cs
@@ -0,0 +1,55 @@
+//
+// System.Web.UI.DataBinder.cs
+//
+// Duncan Mak (duncan@ximian.com)
+//
+// (C) Ximian, Inc.
+//
+
+using System;
+
+namespace System.Web.UI {
+
+ public sealed class DataBinder
+ {
+ public DataBinder ()
+ {
+ }
+
+ [MonoTODO]
+ public static object Eval (object container, string expression)
+ {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public static object Eval (object container, string expression, string format)
+ {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public static object GetIndexedPropertyValue (object container, string expr)
+ {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public static object GetIndexedPropertyValue (object container, string expr, string format)
+ {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public static string GetPropertyValue (object container, string propName)
+ {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public static string GetPropertyValue (object container, string propName, string format)
+ {
+ throw new NotImplementedException ();
+ }
+ }
+}