I am writing a profiler that uses the .NET Profiling API.I want to do some analysis on all the assemblies that are loaded by the profiled application.
I can get the AssemblyID by using the AssemblyLoadStarted method of ICorProfilerCallback interface, using this assembly id i want to get
- Assembly name
- Full path of the file location where the assembly is stored
Is it possible to get both using Profiling API?