The Maverick.NET SSH API

ForwardingTunnelActivityListener Delegate

A delegate for receiving forwarding activity events.

[Visual Basic]
Public Delegate Sub ForwardingTunnelActivityListener( _
   ByVal state As ChannelState, _
   ByVal tunnel As SSHTunnel _
)
[C#]
public delegate void ForwardingTunnelActivityListener(
   ChannelState state,
   SSHTunnel tunnel
);

Remarks

This delegate is called by the ForwardingClient when a new tunnel is created or an existing tunnel is closed. The ChannelState parameter indicates whether the channel is open or closed (all other channel events do not cause this event to be fired).

Requirements

Namespace: Maverick.Forwarding

Assembly: Maverick.NET (in Maverick.NET.dll)

See Also

Maverick.Forwarding Namespace