The Maverick.NET SSH API

ForwardingChannelFailure Delegate

A delegate for receiving notification of a forwarding channel failure.

[Visual Basic]
Public Delegate Sub ForwardingChannelFailure( _
   ByVal type As ForwardingChannelType, _
   ByVal hostToConnect As String, _
   ByVal portToConnect As Integer, _
   ByVal listeningAddress As String, _
   ByVal listeningPort As Integer, _
   ByVal ex As Exception _
)
[C#]
public delegate void ForwardingChannelFailure(
   ForwardingChannelType type,
   string hostToConnect,
   int portToConnect,
   string listeningAddress,
   int listeningPort,
   Exception ex
);

Remarks

This event is fired when an attempt to open a forwarding channel fails. The Exception is provided along with information about the forwarding configuration.

Requirements

Namespace: Maverick.Forwarding

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

See Also

Maverick.Forwarding Namespace