![]() |
![]() ![]() ![]() |
acConnection object.
|
property IsIncoming: Boolean;
|
The IsIncoming property determines whether the connection is incoming or outgoing.
|
|
function TacConnection.GetIsIncoming: Boolean;
|
begin
|
Result := (Owner <> nil) and (Owner is TacConnections) and
|
(TacConnections(Owner).IsPortListening(LocalPort, Proto));
|
end;
|
LocalPort and Proto properties;
|
IsPortListening method.
|