/// <remarks/> public void AddScanResultsToProjectAsync(string sessionId, long projectId, string sourceId, AuditResultsCollection resultsCollection, string comment, object userState) { if ((this.AddScanResultsToProjectOperationCompleted == null)) { this.AddScanResultsToProjectOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddScanResultsToProjectOperationCompleted); } this.InvokeAsync("AddScanResultsToProject", new object[] { sessionId, projectId, sourceId, resultsCollection, comment}, this.AddScanResultsToProjectOperationCompleted, userState); }
/// <remarks/> public void AddScanResultsToProjectAsync(string sessionId, long projectId, string sourceId, AuditResultsCollection resultsCollection, string comment) { this.AddScanResultsToProjectAsync(sessionId, projectId, sourceId, resultsCollection, comment, null); }
public CxWSResponseBasicScanData AddScanResultsToProject(string sessionId, long projectId, string sourceId, AuditResultsCollection resultsCollection, string comment) { object[] results = this.Invoke("AddScanResultsToProject", new object[] { sessionId, projectId, sourceId, resultsCollection, comment}); return ((CxWSResponseBasicScanData)(results[0])); }
/// <remarks/> public System.IAsyncResult BeginAddScanResultsToProject(string sessionId, long projectId, string sourceId, AuditResultsCollection resultsCollection, string comment, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("AddScanResultsToProject", new object[] { sessionId, projectId, sourceId, resultsCollection, comment}, callback, asyncState); }
public CxWSResponseBasicScanData AddScanResultsToProject(string sessionId, long projectId, string sourceId, AuditResultsCollection resultsCollection, string comment) { CxWSResponseBasicScanData result = _web_Service.AddScanResultsToProject(sessionId, projectId, sourceId, resultsCollection, comment); return result; }