NamespaceResolveEventArgs.ResolvedAssemblies Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a collection of assemblies; when the event handler for the ReflectionOnlyNamespaceResolve event is invoked, the collection is empty, and the event handler is responsible for adding the necessary assemblies.
public:
property System::Collections::ObjectModel::Collection<System::Reflection::Assembly ^> ^ ResolvedAssemblies { System::Collections::ObjectModel::Collection<System::Reflection::Assembly ^> ^ get(); };
public System.Collections.ObjectModel.Collection<System.Reflection.Assembly> ResolvedAssemblies { get; }
member this.ResolvedAssemblies : System.Collections.ObjectModel.Collection<System.Reflection.Assembly>
Public ReadOnly Property ResolvedAssemblies As Collection(Of Assembly)
Property Value
A collection of assemblies that define the requested namespace.
Remarks
The event handler adds to this collection all assemblies that define the namespace that is specified by the NamespaceName property.