[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Ein Delegate, mit dem die Kompatibilität zu einem Port
überprüft werden kann.
Namespace: DynamicNode.CoreAssembly: DNCore (in DNCore.dll) Version: 1.4.4679.19807 (1.4.0.0)
Syntax
C# |
---|
public delegate bool CompatibilityChecker<TPort>(
TPort p,
out Type typeSelection
)
where TPort : Port
|
Visual Basic |
---|
Public Delegate Function CompatibilityChecker(Of TPort As Port) ( _
p As TPort, _
<OutAttribute> ByRef typeSelection As Type _
) As Boolean |
F# |
---|
type CompatibilityChecker =
delegate of
p:'TPort *
typeSelection:Type byref -> bool |
Parameters
- p
- Type: TPort
Der Port.
- typeSelection
- Type: System..::..Type%
Wird mit dem ausgewählten Datentyp
belegt, oder null, wenn der Rückgabewert false ist.
Type Parameters
- TPort
- Der Port-Typ für diesen Kompatibilitäts-Check.
Return Value
true, wenn der Port kompatibel ist,
sonst
false.
See Also