Click or drag to resize
Sandcastle Help File BuilderFolderPathTypeConverter.ConvertTo Method (ITypeDescriptorContext, CultureInfo, Object, Type)
Converts the given value object to the specified type, using the specified context and culture information.

Namespace: SandcastleBuilder.Utils.Design
Assembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax
public override Object ConvertTo(
	ITypeDescriptorContext context,
	CultureInfo culture,
	Object value,
	Type destinationType
)

Parameters

context
Type: System.ComponentModel.ITypeDescriptorContext
An ITypeDescriptorContext that provides a format context.
culture
Type: System.Globalization.CultureInfo
A CultureInfo. If null is passed, the current culture is assumed.
value
Type: System.Object
The Object to convert.
destinationType
Type: System.Type
The Type to convert the value parameter to.

Return Value

Type: Object
An Object that represents the converted value.
Exceptions
ExceptionCondition
ArgumentNullExceptionThe destinationType parameter is null.
NotSupportedExceptionThe conversion cannot be performed.
See Also