New test.
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / ExpressionBuilder.cs
index fdb8a0566ccd78d34ac1e0bb717c220393f0f494..7353b3b25d544b754be5728f582c57023a745b3c 100644 (file)
@@ -59,6 +59,10 @@ namespace System.Web.Configuration {
                        properties.Add (typeProp);
                }
 
+               internal ExpressionBuilder ()
+               {
+               }
+
                public ExpressionBuilder (string expressionPrefix, string theType)
                {
                        this.ExpressionPrefix = expressionPrefix;
@@ -79,6 +83,12 @@ namespace System.Web.Configuration {
                        set { base[typeProp] = value; }
                }
 
+               internal Type TypeInternal {
+                       get {
+                               return System.Type.GetType (this.Type, true);
+                       }
+               }
+
                protected override ConfigurationPropertyCollection Properties {
                        get { return properties; }
                }