Click here to Skip to main content
15,888,098 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Error	524	'ServiceClient.Reporting.ReportHandler' does not contain a definition for 'get_Report' and no extension method 'get_Report' accepting a first argument of type 'ServiceClient.Reporting.ReportHandler' could be found (are you missing a using directive or an assembly reference?)	


What I have tried:

protected override void PerformAction()
		{
			this.reportName = (string.IsNullOrEmpty(this.reportName) ? this.ReportHandler.get_Report().get_Settings().get_ReportName() : Security.SanitizeInput(this.reportName));
			try
Posted
Updated 31-Mar-18 1:42am

1 solution

The error message means exactly what it says: your ReportHandler class does not contain a method called "get_Settings" and no extension method has been found which provides it.

Check the class, check your names - and remember that C# is case sensitive, so get_Settings is not the same as Get_Settings for example.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900