public GitRepository(String url)
 {
     this.url                = url;
     this.isBusy             = false;
     this.taskDescription    = "";
     this.progress           = 0;
     this.isIndetermerminate = false;
     this._gitHandler        = new GitHandler(this);
     this._zipHandler        = new ZipHandler(this);
     this._webDavHandler     = new WebDavHandler(this);
 }
예제 #2
0
 public Options(WebDavHandler handler)
 {
     _handler = handler;
 }
예제 #3
0
파일: Trace.cs 프로젝트: pchaozhong/FlexNet
 public Trace(WebDavHandler handler)
 {
     _handler = handler;
 }
예제 #4
0
		public Options(WebDavHandler handler)
		{
			_handler = handler;
		}