Script Component - Overidable Methods/Functions.

I am looking for a list of either generally used or a full list of overridable methods/functions for a script transformation

I tried looking in the Visual Studio behind the script component but it only gives one method namely, Input0_ProcessInputRow, or if you make it asynchronous then it gives you another method CreateNewOutputRows.

I am basically looking for all the available overridable methods behind a script component in various situations.

Thanks,

Andy.



Answer this question

Script Component - Overidable Methods/Functions.

  • Scheinka

    Position the cursor outside of Input0_ProcessInputRow method but still within the class definition. Then type:

    "public overrides " (you'll need the space at the end)

    Intellisense will then give you a list of overridable methods.

    -Jamie



  • Script Component - Overidable Methods/Functions.