ActivityBindTypeConverter::CanConvertTo Method (ITypeDescriptorContext^, Type^)

 

Returns a value indicating whether this converter can convert an ActivityBind to the destination type using the specified context.

Namespace:   System.Workflow.ComponentModel.Design
Assembly:  System.Workflow.ComponentModel (in System.Workflow.ComponentModel.dll)

public:
virtual bool CanConvertTo(
	ITypeDescriptorContext^ context,
	Type^ destinationType
) override

Parameters

context
Type: System.ComponentModel::ITypeDescriptorContext^

The ITypeDescriptorContext that provides a format context.

destinationType
Type: System::Type^

A Type that represents the type to convert the ActivityBind to.

Return Value

Type: System::Boolean

true if this converter can perform the conversion; otherwise, false.

The context parameter can be used to extract additional information about the environment this converter is being invoked from. This can be a null reference (Nothing in Visual Basic), so always check. Also, properties on the context object can return a null reference (Nothing).

System_CAPS_noteNote

Override this method to provide your own conversion requirements.

.NET Framework
Available since 3.0
Return to top
Show: