mscorlib(4.0.0.0) API with additions
NamespaceResolveEventArgs.cs
2 using System.Reflection;
3 
5 {
7  [ComVisible(false)]
9  {
10  private string _NamespaceName;
11 
12  private Assembly _RequestingAssembly;
13 
14  private Collection<Assembly> _ResolvedAssemblies;
15 
18  public string NamespaceName => _NamespaceName;
19 
22  public Assembly RequestingAssembly => _RequestingAssembly;
23 
26  public Collection<Assembly> ResolvedAssemblies => _ResolvedAssemblies;
27 
31  public NamespaceResolveEventArgs(string namespaceName, Assembly requestingAssembly)
32  {
33  _NamespaceName = namespaceName;
34  _RequestingAssembly = requestingAssembly;
35  _ResolvedAssemblies = new Collection<Assembly>();
36  }
37  }
38 }
Definition: __Canon.cs:3
Represents the base class for classes that contain event data, and provides a value to use for events...
Definition: EventArgs.cs:9
Represents an assembly, which is a reusable, versionable, and self-describing building block of a com...
Definition: Assembly.cs:22
Collection< Assembly > ResolvedAssemblies
Gets a collection of assemblies; when the event handler for the E:System.Runtime.InteropServices....
NamespaceResolveEventArgs(string namespaceName, Assembly requestingAssembly)
Initializes a new instance of the T:System.Runtime.InteropServices.WindowsRuntime....
Assembly RequestingAssembly
Gets the name of the assembly whose dependency is being resolved.
Provides data for the E:System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMetadata....