EncodingTypeConverterConvertTo(ITypeDescriptorContext, CultureInfo, Object, Type) Method
Converts the given value object to the specified type, using the specified context and culture information.
Namespace: DevCase.Runtime.TypeConvertersAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public override Object ConvertTo(
ITypeDescriptorContext context,
CultureInfo culture,
Object value,
Type destinationType
)
Public Overrides Function ConvertTo (
context As ITypeDescriptorContext,
culture As CultureInfo,
value As Object,
destinationType As Type
) As Object
Dim instance As EncodingTypeConverter
Dim context As ITypeDescriptorContext
Dim culture As CultureInfo
Dim value As Object
Dim destinationType As Type
Dim returnValue As Object
returnValue = instance.ConvertTo(context,
culture, value, destinationType)
public:
virtual Object^ ConvertTo(
ITypeDescriptorContext^ context,
CultureInfo^ culture,
Object^ value,
Type^ destinationType
) override
abstract ConvertTo :
context : ITypeDescriptorContext *
culture : CultureInfo *
value : Object *
destinationType : Type -> Object
override ConvertTo :
context : ITypeDescriptorContext *
culture : CultureInfo *
value : Object *
destinationType : Type -> Object
No code example is currently available or this language may not be supported.
- context ITypeDescriptorContext
-
An ITypeDescriptorContext that provides a format context.
- culture CultureInfo
-
A CultureInfo. If null is passed, the current culture is assumed.
- value Object
-
The Object to convert.
- destinationType Type
-
The Type to convert the value parameter to.
Object
An
Object that represents the converted value.
ArgumentNullException
|
destinationType
|