NamespaceResolveEventArgs.ResolvedAssemblies Property

Definition

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.

Applies to