show/hide this revision's text 2 added 4 characters in body

The Exception When Clause is largely unknown.

Consider this:

Public Sub Login(host as string, user as String, password as string, Optional bRetry as Boolean = False)
Try
   ssh.Connect(host, user, password)
Catch ex as TimeoutException When Not bRetry
   ''Try '//Try again, but only once.
   Login(host, user, password, True)
Catch ex as TimeoutException
   ''Log '//Log exception
End Try
End Sub
show/hide this revision's text 1

The Exception When Clause is largely unknown.

Consider this:

Public Sub Login(host as string, user as String, password as string, Optional bRetry as Boolean = False)
Try
   ssh.Connect(host, user, password)
Catch ex as TimeoutException When Not bRetry
   ''Try again, but only once.
   Login(host, user, password, True)
Catch ex as TimeoutException
   ''Log exception
End Try
End Sub