Method | Description | |
---|---|---|
CanConvertTo ( ITypeDescriptorContext context, |
Returns whether this converter can convert the object to the specified type.
|
|
ConvertTo ( ITypeDescriptorContext context, System culture, object value, |
Converts the given value object to the specified type, using the specified context and culture information.
|
public CanConvertTo ( ITypeDescriptorContext context, |
||
context | ITypeDescriptorContext | An ITypeDescriptorContext that provides a format context. |
destinationType | A Type that represents the type you want to convert to. | |
return | bool |
public ConvertTo ( ITypeDescriptorContext context, System culture, object value, |
||
context | ITypeDescriptorContext | An ITypeDescriptorContext that provides a format context. |
culture | System | A CultureInfo. If a null reference (Nothing in Visual Basic) is passed, the current culture is assumed. |
value | object | The Object to convert. |
destinationType | The Type to convert the value parameter to. | |
return | object |