コード例 #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();
		}