// // 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 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 (); } } }