コード例 #1
0
        private void InitializeTerminalClient(VoiceProfileViewModel viewModel)
        {
            var settings = new FormAppSettings
            {
                Host                = viewModel.IpAddress,
                UserName            = viewModel.UserName,
                Password            = viewModel.Password,
                Port                = this.appSettings.Port,
                TimeoutSeconds      = this.appSettings.TimeoutSeconds,
                VirtualScreenHeight = this.appSettings.VirtualScreenHeight,
                VirtualScreenWidth  = this.appSettings.VirtualScreenWidth
            };

            this.telnet = new Telnet(settings, this.progressCallback);
        }
コード例 #2
0
ファイル: TelnetService.cs プロジェクト: lwiltban/memcachecli
 public void Disconnect(ITelnet telnet)
 {
 }
コード例 #3
0
 public MySimulatorModel(ITelnet tc)
 {
     this.telnetClient = tc;
     this.stop         = false;
 }
コード例 #4
0
 public Model(ITelnet telnet)
 {
     _telnet   = telnet;
     _analyzer = new XmlPropertiesAnalyzer();
 }