In the reflection-only context, dependencies are not resolved automatically. They must be preloaded or returned by the handler for this event. This event is raised when an assembly has a dependency that is not already loaded into the reflection-only context. The missing dependency is specified by the ResolveEventArgs.Name property. The ResolveEventHandler for this event must return an assembly that satisfies the dependency. The assembly that is returned must be loaded into the reflection-only context.
This event is raised only for missing dependencies of the assembly that you are loading into the reflection-only context (for example, by using the System.Reflection.Assembly.ReflectionOnlyLoad(string) method). It is not raised if the assembly that you are loading cannot be found.
Beginning with the net_v40_long, the ResolveEventArgs.RequestingAssembly property returns the assembly that requested the assembly load that could not be resolved. Knowing the identity of the requesting assembly might be useful in identifying the correct version of the dependency, if more than one version is available. For more information, see ResolveEventArgs.RequestingAssembly.
For this event, the ResolveEventArgs.Name property returns the assembly name before policy is applied.
For more information about handling events, see Consuming Events.