Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
4answers
16k views

C# Assembly.Load vs Assembly.ReflectionOnlyLoad

I'm trying to understand the differences between Assembly.Load and Assembly.ReflectionOnlyLoad. In the code below I am attempting to find all of the objects in a given assembly that inherit from a ...
6
votes
2answers
1k views

Getting types in mscorlib 2.0.5.0 (aka Silverlight mscorlib) via reflection on?

I am trying to add Silverlight support to my favorite programming langauge Nemerle. Nemerle , on compilation procedure, loads all types via reflection mainly in 2 steps 1-) Uses Assembly.LoadFrom ...
1
vote
1answer
1k views

Weird FileLoadException when loading assembly referenced by WPF project using Assembly.ReflectionOnlyLoadFrom

I have a custom MSBuild task that peeks inside an assembly to get some attribute meta-data. Assembly assembly = Assembly.ReflectionOnlyLoadFrom(AssemblyFile) This is used by our automated ...
1
vote
2answers
2k views

Why is ReflectionOnlyAssemblyResolve not executed when trying to Assembly.ReflectionOnlyLoad?

I'm trying to load a few modules via hooking into the AppDomain.AssemblyResolve and AppDomain.ReflectionOnlyAssemblyResolve events. While I got the former to work, I fail miserably on the latter. I've ...
0
votes
1answer
479 views

Cannot reflect over assembly that shares a dependency of different version

Here's the scenario using Assembly.ReflectionOnlyLoadFrom: Both my assembly Inspected and my reflection Application Inspector reference Assembly Dependency. If Inspector references Dependency ...
-1
votes
1answer
29 views

Get types in assembly: ReflectionTypeLoad Exception [closed]

Possible Duplicate: How to reproducably cause / provoke a ReflectionTypeLoadException? I wanted to get all types in a loaded assembly.code snippet is as follows Assembly assemblyObj = ...