
PowerTCP Emulation for .NET
Overview Polished VT Emulation PowerTCP Emulation for .NET has been re-designed to provide the most advanced VT Emulation and Telnet components available. In addition to a sophisticated VT Display control, it includes all of the classes found in PowerTCP Telnet for .NET. Requires fewer resources, provides more flexibility, and elicits code that is easy to re-use and maintain. Utilizes .NET 2.0 features including generics, IPv6, and X509 certificates Secure Socket Layer (SSL/TLS) security is fully integrated Lightweight, single vt.dll streamlines your app //Connect to the server telnet1.Connect("myServer"); //Login and marshal data to the UI thread telnet1.Marshal(telnet1.Login(new Credentials("myUser", "myPass", "~$")), "", null); //Send a list command telnet1.Write("ls -la\r"); //Wait for prompt, marshal data to the UI thread telnet1.Marshal(telnet1.ReadToDelimiter("~$"), "", null); //Send an exit command; server will close the connection telnet1.Write("exit\r"); //Read any remaining data before the shutdown telnet1.Marshal(telnet1.ReadToEnd(), "", null); Feature Overview Features VT52, VT100, VT220, VT320 terminal support, with many ANSI extensions Versatile- use interactively for terminal applications- use invisibly for screen-scraping applications- integrated scrollback buffer displays scrolled lines Telnet, Rlogin, Rexec and Rsh communication components International characters, including double-high, double-wide Unicode support Screen customization with numerous display options Renders ANSI color schemes TrueType font and ClearType smoothing support provides sharper character cells Graphic characters fully supported for all fonts Comprehensive style information for every cell in the display Easy To Use SetStream() method connects the control to any Stream Key mapping is simplified with a specialized KeyDown event Optional automatic HTML conversion of scraped text Powerful printing capabilities, including auto-print Samples and Documentation Many sample projects for C# and VB.NET (Windows Forms, Console, ASP.NET) Online, MS Help 2.0 and Help Viewer 1.0 integrated documentation .NET Framework 4 Client Profile compatible 64-bit OS support Features pullpage Code Examples pullpage Release History pullpage Online Documentation pullpage vt-net-control-terminal-emulation pullpage telnet-net-component pullpage rlogin-net-component pullpage rexec-net-component pullpage rsh-net-component pullpage powertcp-emulation-for-net-automated-telnet-session-code-example pullpage windows-forms-key-mapping-code-example pullpage windows-forms-receive-and-display-data-code-example pullpage a-quick-and-easy-interactive-vt-client pullpage a-fully-functional-interactive-vt-client pullpage scraping-text-from-the-vt-display pullpage an-interactive-vt-session-over-ssh