GetVhostSNAt() public method

public GetVhostSNAt ( int position ) : string
position int
return string
Exemplo n.º 1
0
        public void ToFile()
        {
            try
            {
                this.writer = new StreamWriter(this.hostFile);
            }
            catch (FileNotFoundException)
            {
                Console.Error.WriteLine("cannot find the file");
            }
            catch (IOException)
            {
                Console.Error.WriteLine("cannot open the file");
            }

            using (this.writer)
            {
                Vhosts vhostsList = new Vhosts();
                this.writer.WriteLine("###### VhostsEditor ######");
                for (int i = 0; i < vhostsList.Count(); i++)
                {
                    this.writer.WriteLine("127.0.0.1        " + vhostsList.GetVhostSNAt(i).Trim());
                }
            }
        }
Exemplo n.º 2
0
        private void FillVhostsBox(Vhosts vhosts)
        {
            List<string> _items = new List<string>();

            vhosts.Init();

            for (int i = 0; i < vhosts.Count(); i++)
            {
                _items.Add(vhosts.GetVhostSNAt(i));
            }

            vhostsListBox.DataSource = _items;
        }
Exemplo n.º 3
0
        private void FillVhostsBox(Vhosts vhosts)
        {
            List <string> _items = new List <string>();

            vhosts.Init();

            for (int i = 0; i < vhosts.Count(); i++)
            {
                _items.Add(vhosts.GetVhostSNAt(i));
            }

            vhostsListBox.DataSource = _items;
        }
Exemplo n.º 4
0
        public void ToFile()
        {
            try
                {
                    this.writer = new StreamWriter(this.hostFile);
                }
                catch (FileNotFoundException)
                {
                    Console.Error.WriteLine("cannot find the file");
                }
                catch (IOException)
                {
                    Console.Error.WriteLine("cannot open the file");
                }

                using (this.writer)
                {
                    Vhosts vhostsList = new Vhosts();
                    this.writer.WriteLine("###### VhostsEditor ######");
                    for (int i = 0; i < vhostsList.Count(); i++)
                    {
                        this.writer.WriteLine("127.0.0.1        "+vhostsList.GetVhostSNAt(i).Trim());
                    }
                }
        }