[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Diese Methode muss aufgerufen werden, wenn eine Verbindung erstellt oder zerstört wurde. Sie löst das ConnectionAffected-Ereignis aus.

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

Syntax

C#
public void OnConnectionAffected(
	InPort iP,
	OutPort oP,
	ConnectionEventTyp typ
)
Visual Basic
Public Sub OnConnectionAffected ( _
	iP As InPort, _
	oP As OutPort, _
	typ As ConnectionEventTyp _
)
F#
abstract OnConnectionAffected : 
        iP:InPort * 
        oP:OutPort * 
        typ:ConnectionEventTyp -> unit 
override OnConnectionAffected : 
        iP:InPort * 
        oP:OutPort * 
        typ:ConnectionEventTyp -> unit 

Parameters

iP
Type: DynamicNode.Core..::..InPort
Der InPort der Verbindung.
oP
Type: DynamicNode.Core..::..OutPort
Der OutPort der Verbindung.
typ
Type: DynamicNode.Core..::..ConnectionEventTyp
Der Typ des Ereignisses.

Implements

IGraph..::..OnConnectionAffected(InPort, OutPort, ConnectionEventTyp)

See Also