BaseCompareValidator::Convert Method (String^, ValidationDataType, Boolean, Object^%)
Converts the specified text into an object of the specified data type. This version of the overloaded method allows you to specify whether values are converted using a culture-neutral format.
Assembly: System.Web (in System.Web.dll)
protected: static bool Convert( String^ text, ValidationDataType type, bool cultureInvariant, [OutAttribute] Object^% value )
Parameters
- text
-
Type:
System::String^
The text to convert.
- type
-
Type:
System.Web.UI.WebControls::ValidationDataType
One of the ValidationDataType values.
- cultureInvariant
-
Type:
System::Boolean
true to convert values to a culture-neutral format; otherwise, false.
- value
-
Type:
System::Object^%
When this method returns, contains an object with the conversion result. This parameter is passed uninitialized.
The Convert(String^, ValidationDataType, Boolean, Object^%) method is used to convert text into an object of the specified data type. Although the method returns true or false to indicate whether the conversion was successful, the converted value is stored in the valueout parameter.
Note |
|---|
If the conversion is unsuccessful, the value parameter is set to null. |
To indicate that values should be converted using a culture-neutral format, pass in true for the cultureInvariant parameter; otherwise, values are converted using the format used by the current culture. When converting a value using the format used by the current culture, consider using the BaseCompareValidator::Convert(String^, ValidationDataType, Object^%) overloaded version of this method.
Available since 2.0
