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:
authorGaurav Vaish <gvaish@mono-cvs.ximian.com>2001-12-15 16:49:31 +0300
committerGaurav Vaish <gvaish@mono-cvs.ximian.com>2001-12-15 16:49:31 +0300
commit6ea7425d713e7ec712c35919ed2489caeeaa17a8 (patch)
treee6880df98858671ea7857ac5c7fbe83ac40ff15e /mcs/class/System.Web/System.Web.UI.WebControls/BaseCompareValidator.cs
parent8369df84516dbd463944f9efeebea935e38f9f1b (diff)
2001-12-15 Gaurav Vaish <Gvaish@iitk.ac.in>
* AdCreatedEventArgs.cs - Comments * BaseCompareValidator.cs - Some undocumented methods * CheckBoxList.cs - Comments * CommandEventArgs, DataGridCommandEventArgs, RepeaterCommandEventArgs -- Completed * ChangeLog - Updated svn path=/trunk/mcs/; revision=1579
Diffstat (limited to 'mcs/class/System.Web/System.Web.UI.WebControls/BaseCompareValidator.cs')
-rwxr-xr-xmcs/class/System.Web/System.Web.UI.WebControls/BaseCompareValidator.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/mcs/class/System.Web/System.Web.UI.WebControls/BaseCompareValidator.cs b/mcs/class/System.Web/System.Web.UI.WebControls/BaseCompareValidator.cs
index daba161ff32..d3b9e2be17f 100755
--- a/mcs/class/System.Web/System.Web.UI.WebControls/BaseCompareValidator.cs
+++ b/mcs/class/System.Web/System.Web.UI.WebControls/BaseCompareValidator.cs
@@ -14,6 +14,8 @@
using System;
using System.Collections;
using System.Globalization;
+using System.Text;
+using System.Text.RegularExpressions;
using System.Web;
using System.Web.UI;
@@ -80,6 +82,27 @@ namespace System.Web.UI.WebControls
{
// TODO: The Lost World
}
+ throw new NotImplementedException();
+ }
+
+ // Undocumented
+ protected bool Compare(string leftText, string rightText, ValidationCompareOperator op, ValidationDataType type)
+ {
+ throw new NotImplementedException();
+ }
+
+ // Uncodumented
+ protected bool Convert(string text, ValidationDataType type, out object convertedValue)
+ {
+ throw new NotImplementedException();
+ convertedValue = null;
+ try
+ {
+ switch(type)
+ {
+ case
+ }
+ }
}
}
}