AssemblyReflector - event based discovery of assemblies

AssemblyReflector (Conchango.Code.Reflection) is an event-based assembly parser - it allows assemblies to be searched for Attributes, Events, Fields, Interfaces, Methods, Nested Types, Properties and Types, by subscribing to the relevent OnDiscover event and then performing a search for the member based on several available search methods;

o Contains(string)
o EndsWith(string)
o Named(string)
o OfType(Type) - Attributes Only
o StartsWith(string)
o WithBindingFlags(BindingFlags)

When an event is raised you can access the discovered member via the EventArgs

     AssemblyReflector

 

No Comments