예제 #1
0
파일: Hudson.cs 프로젝트: rtyler/Hudson.NET
		public Api(Hudson.Internal.IRequestProxy rp)
		{
			if (rp == null)
			{
				throw new Exception("You cannot pass a null RequestProxy object to me");
			}
			this.requestProxy = rp;
		}
예제 #2
0
파일: Hudson.cs 프로젝트: rtyler/Hudson.NET
		public Api(string host, int port)
		{
			this.requestProxy = new Hudson.Internal.RequestProxy(host, port);
		}
예제 #3
0
파일: Hudson.cs 프로젝트: rtyler/Hudson.NET
		public Api()
		{
			this.requestProxy = new Hudson.Internal.RequestProxy();
		}