Exemplo n.º 1
0
        /// <summary>
        /// Ask user for Hudson connection information
        /// </summary>
        private void AskForConnection()
        {
            HudsonConnectionForm hcf = new HudsonConnectionForm(hudson.Connection);

            if (hcf.ShowDialog() == DialogResult.OK)
            {
                Connection = hcf.Connection;
            }
        }
Exemplo n.º 2
0
        public HudsonConnectionForm(HudsonConnection connection)
        {
            InitializeComponent();

            Connection = connection;
        }
Exemplo n.º 3
0
 public HudsonWebClient(HudsonConnection connection)
 {
     this.Credential = new NetworkCredential(connection.Username, connection.Password);
 }
Exemplo n.º 4
0
        public HudsonConnectionForm(HudsonConnection connection)
        {
            InitializeComponent();

            Connection = connection;
        }
Exemplo n.º 5
0
 public JsonHudson(HudsonConnection connection)
 {
     this.Connection = connection;
 }
Exemplo n.º 6
0
 public HudsonWebClient(HudsonConnection connection)
 {
     this.Credential = new NetworkCredential(connection.Username, connection.Password);
 }
Exemplo n.º 7
0
 public JsonHudson(HudsonConnection connection)
 {
     this.Connection = connection;
 }
Exemplo n.º 8
0
 public JsonHudson()
 {
     this.Connection = new HudsonConnection();
 }