Can someone explain about PerformSearch Method in Microsoft.Reporting.WinForms.ServerReport
ServerReport As Microsoft.Reporting.WinForms.ServerReport = Nothing
int result=ServerReport.GetType.GetMethod("PerformSearch", Reflection.BindingFlags.Instance Or Reflection.BindingFlags.NonPublic).Invoke(ServerReport, {SearchValue, CurrentPage + 1, CurrentPage + 1})
What are the input parameters and return value for PerformSearch method?
OK, I loaded up this Nuget Package, fired up Telerik JustDecompile, opened
Microsoft.ReportViewer.WinForms.dll
, did a search onPerformSearch
, and found the method. This is what the method looks like:If you want to find out more, you can download and install JustDecompile yourself. The
FindString()
method in the code above is clickable in JustDecompile; it will take you to that method in the source.