Hi,
I want to add new logic around methods which are defined in the base class for un ssrs. My requirement is to add new column in the report. So i add new field in temp table the i want to feed this field in the method insert that called in processReport.
This method is declared private so i can't use COC due to concept of COC 'can not be used as chain of command method because its target method is not protected'
Trying to use an eventhandler, i get this message : "Pre or post event handlers can only be created on hookable methods"
Is there any other way to overwrite a class method ?
Regards