Xceed .NET Libraries Documentation
Xceed.SSH.Client Assembly / Xceed.SSH.Client Namespace / SSHClient Class / TraceWriter Property


In This Topic
    TraceWriter Property (SSHClient)
    In This Topic
    Gets or sets the System.IO.TextWriter which will trace the connection/deconnection process as well as the commands and replies sent to and received from the SSH server.
    Syntax
    'Declaration
     
    Public Property TraceWriter As TextWriter
    'Usage
     
    Dim instance As SSHClient
    Dim value As TextWriter
     
    instance.TraceWriter = value
     
    value = instance.TraceWriter
    public TextWriter TraceWriter {get; set;}

    Property Value

    A reference to a System.IO.TextWriter which will trace the connection/deconnection process as well as the commands and replies sent to and received from the SSH server. By default this property is set to a null reference (Nothing in Visual Basic); therefore, no tracing is done.
    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