public string GetServerVersion() { WClient wClient = new WClient(); string serverVersion = wClient.GetServerVersion(this._serverUrl); return(serverVersion); }
public ProjectStatus GetProjectStatus(string projectName) { WClient wClient = new WClient(); ProjectStatus projectStatus = wClient.GetProjectStatus(this._serverUrl, projectName); return(projectStatus); }
public string GetProject(string projectName) { WClient wClient = new WClient(); string project = wClient.GetProject(this._serverUrl, projectName); return(project); }
public ProjectStatus[] GetProjectStatus() { WClient wClient = new WClient(); ProjectStatus[] projectsStatus = wClient.GetProjectsStatus(this._serverUrl); return(projectsStatus); }
//public void ForceBuild(string projectName, ForceFilterClientInfo[] clientInfo) //{ // WClient wClient = new WClient(); // string project = wClient.ForceBuild(this._serverUrl, projectName, clientInfo); // return project; //} public bool ForceBuild(string projectName, string serializedClientInfo) { WClient wClient = new WClient(); bool result = wClient.ForceBuild(this._serverUrl, projectName, serializedClientInfo); return(result); }