Exemple #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;
            }
        }
        public HudsonConnectionForm(HudsonConnection connection)
        {
            InitializeComponent();

            Connection = connection;
        }
Exemple #3
0
 public HudsonWebClient(HudsonConnection connection)
 {
     this.Credential = new NetworkCredential(connection.Username, connection.Password);
 }
        public HudsonConnectionForm(HudsonConnection connection)
        {
            InitializeComponent();

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