Xceed .NET Libraries Documentation
Xceed.SSH.Core Assembly / Xceed.SSH.Core Namespace / SSHTimeoutException Class / SSHTimeoutException Constructor / SSHTimeoutException Constructor(Int32,String,String,Exception)
The SSH client's timeout.
A description of the context.
The target the client is waiting on.
The inner exception of this exception.


In This Topic
    SSHTimeoutException Constructor(Int32,String,String,Exception)
    In This Topic
    Initializes a new instance of the SSHTimoutException class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal timeout As Integer, _
       ByVal topic As String, _
       ByVal waitTarget As String, _
       ByVal innerException As Exception _
    )
    'Usage
     
    Dim timeout As Integer
    Dim topic As String
    Dim waitTarget As String
    Dim innerException As Exception
     
    Dim instance As New SSHTimeoutException(timeout, topic, waitTarget, innerException)
    public SSHTimeoutException( 
       int timeout,
       string topic,
       string waitTarget,
       Exception innerException
    )

    Parameters

    timeout
    The SSH client's timeout.
    topic
    A description of the context.
    waitTarget
    The target the client is waiting on.
    innerException
    The inner exception of this exception.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also