Skip to content

Commit

Permalink
Merge pull request #38 from bmrvilela/master
Browse files Browse the repository at this point in the history
Added method to fetch Scan Result Path
  • Loading branch information
portilha authored Dec 9, 2024
2 parents 7126fd1 + 8aa9710 commit 8c0b617
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Checkmarx.API/CxClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,11 @@ public cxPortalWebService93.CxWSResponseScanCompareSummary GetScanCompareSummary
return PortalSOAP.GetScanCompareSummaryAsync(_soapSessionId, previousScanId, newScanId).Result;
}

public cxPortalWebService93.CxWSResponceResultPath GetScanResultPath(long scanId, long pathId)
{
return PortalSOAP.GetResultPathAsync(_soapSessionId, scanId, pathId).Result;
}

/// <summary>
/// GET Generic Request... ODATA/REST/SOAP
/// </summary>
Expand Down

0 comments on commit 8c0b617

Please sign in to comment.