Returns whether the given value object is valid for this type and for the specified context.
Assembly: System (in System.dll)
Public Overridable Function IsValid ( _
context As [%$TOPIC/5z76f169_en-us_VS_110_1_0_0_0_0%], _
value As [%$TOPIC/5z76f169_en-us_VS_110_1_0_0_0_1%] _
) As [%$TOPIC/5z76f169_en-us_VS_110_1_0_0_0_2%]
public virtual [%$TOPIC/5z76f169_en-us_VS_110_1_0_1_0_0%] IsValid(
[%$TOPIC/5z76f169_en-us_VS_110_1_0_1_0_1%] context,
[%$TOPIC/5z76f169_en-us_VS_110_1_0_1_0_2%] value
)
public:
virtual [%$TOPIC/5z76f169_en-us_VS_110_1_0_2_0_0%] IsValid(
[%$TOPIC/5z76f169_en-us_VS_110_1_0_2_0_1%]^ context,
[%$TOPIC/5z76f169_en-us_VS_110_1_0_2_0_2%]^ value
)
abstract IsValid :
context:[%$TOPIC/5z76f169_en-us_VS_110_1_0_3_0_0%] *
value:[%$TOPIC/5z76f169_en-us_VS_110_1_0_3_0_1%] -> [%$TOPIC/5z76f169_en-us_VS_110_1_0_3_0_2%]
override IsValid :
context:[%$TOPIC/5z76f169_en-us_VS_110_1_0_3_0_3%] *
value:[%$TOPIC/5z76f169_en-us_VS_110_1_0_3_0_4%] -> [%$TOPIC/5z76f169_en-us_VS_110_1_0_3_0_5%]
Parameters
- context
- Type:
System.ComponentModelITypeDescriptorContext
An ITypeDescriptorContext that provides a format context.
- value
- Type:
SystemObject
The Object to test for validity.
Return Value
Type: SystemBooleantrue if the specified value is valid for this object; otherwise, false.
Use the context parameter to extract additional information about the environment from which this converter is invoked. This parameter can be , so always check it. Also, properties on the context object can return .
Starting in .NET Framework 4, the IsValid method catches exceptions from the CanConvertFrom and ConvertFrom methods. If the input value type causes CanConvertFrom to return false, or if the input value causes ConvertFrom to raise an exception, the IsValid method returns false.
To enable the legacy behavior, insert the following lines into the configuration file of the application, for example, application1.exe.config.
<configuration>
<appSettings>
<add key="UseCompatibleTypeConverterBehavior" value="true" />
</appSettings>
</configuration>
Override this method if the type you want to convert supports standard values that can be validated.
The IsValid method is used to validate a value within the type rather than to determine if value can be converted to the given type. For example, IsValid can be used to determine if a given value is valid for an enumeration type. For an example, see EnumConverter.
For an example of this function, see the TypeConverter class.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.