Replies: 1 comment 3 replies
-
I don't think there would be a way to reliably trace or handle all possible paths via code. So traditional performance profiler would be the way to go. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I want to profile function and property calls to CLR objects. I looked at the code and saw that most of the points I can hook (ObjectWrapper, TypeResolver, etc.) are either sealed or do not let me intercept calls. I tried using Debugger by stepping in, but it calls me only before the call and does not work for properties. I cannot use a regular profiler like dotTrace for various reasons, including security.
Is there a way for me to be able to log/trace function calls/property fetches to CLR without changing the source code, which I'm open to but prefer not to in a sizeable project without a good grasp of the things?
Best regards
Beta Was this translation helpful? Give feedback.
All reactions