Ejemplo n.º 1
0
		public Api(Hudson.Internal.IRequestProxy rp)
		{
			if (rp == null)
			{
				throw new Exception("You cannot pass a null RequestProxy object to me");
			}
			this.requestProxy = rp;
		}
Ejemplo n.º 2
0
		public Api(string host, int port)
		{
			this.requestProxy = new Hudson.Internal.RequestProxy(host, port);
		}
Ejemplo n.º 3
0
		public Api()
		{
			this.requestProxy = new Hudson.Internal.RequestProxy();
		}