2010-02-18 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / ControlPropertyNameConverter.cs
index 7a418585e56aeaaf8a7c83e4a584c7629f4a48f3..c29b4f05a964e3c1e55478dfb9350c989bb057b0 100644 (file)
@@ -36,6 +36,25 @@ namespace System.Web.UI.WebControls
 {
        public class ControlPropertyNameConverter: StringConverter
        {
+               [MonoLimitation("This implementation always returns null")]
+               public override StandardValuesCollection GetStandardValues (ITypeDescriptorContext context) 
+               {
+                       return null;
+               }
+
+               public override bool GetStandardValuesSupported (ITypeDescriptorContext context) 
+               {
+                       if (context != null) {
+                               return true;
+                       }
+
+                       return false;
+               }
+
+               public override bool GetStandardValuesExclusive (ITypeDescriptorContext context) 
+               {
+                       return false;
+               }
        }
 }