[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Prüft ob der Konverter eine Umwandlung von einen Datentyp in einen anderen unterstützt.

Namespace: DynamicNode.Core
Assembly: DNCore (in DNCore.dll) Version: 1.4.4679.19807 (1.4.0.0)

Syntax

C#
bool CheckSupport(
	Type to,
	Type from
)
Visual Basic
Function CheckSupport ( _
	to As Type, _
	from As Type _
) As Boolean
F#
abstract CheckSupport : 
        to:Type * 
        from:Type -> bool 

Parameters

to
Type: System..::..Type
Der Zieldatentyp.
from
Type: System..::..Type
Der Ursprungsdatentyp.

Return Value

Gibt true zurück, wenn dieser Konverter eine Umwandlung von from nach to unterstützt, sonst false.

See Also