| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- //
- // System.Web.UI.DataBinder.cs
- //
- // Duncan Mak ([email protected])
- //
- // (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 string 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 string GetIndexedPropertyValue (object container, string expr, string format)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static object GetPropertyValue (object container, string propName)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static string GetPropertyValue (object container, string propName, string format)
- {
- throw new NotImplementedException ();
- }
- }
- }
|