IReportingServiceDeleteHistory Method  | 
 
            Delete the specified SSRS history report.  
            Note that if SSRS throws a ReportHistoryNotFoundException exception, that exception is caught and not propagated, and false is returned.
            
 
    Namespace: 
   NetQuarry.Reporting
    Assembly:
   EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntaxbool DeleteHistory(
	string reportName,
	string historyID
)
Function DeleteHistory ( 
	reportName As String,
	historyID As String
) As Boolean
Parameters
- reportName
 - Type: SystemString
The name of the SSRS report. - historyID
 - Type: SystemString
The ID of the history report as generated by SSRS.  The ID has the form of a timestamp, e.g. "2012-07-11T02:47:03". 
Return Value
Type: 
BooleanTrue if the report was deleted or was not found, else false.
See Also