mscorlib(4.0.0.0) API with additions
|
Provides data for loader resolution events, such as the E:System.AppDomain.TypeResolve, E:System.AppDomain.ResourceResolve, E:System.AppDomain.ReflectionOnlyAssemblyResolve, and E:System.AppDomain.AssemblyResolve events. More...
Public Member Functions | |
ResolveEventArgs (string name) | |
Initializes a new instance of the T:System.ResolveEventArgs class, specifying the name of the item to resolve. More... | |
ResolveEventArgs (string name, Assembly requestingAssembly) | |
Initializes a new instance of the T:System.ResolveEventArgs class, specifying the name of the item to resolve and the assembly whose dependency is being resolved. More... | |
![]() | |
EventArgs () | |
Initializes a new instance of the T:System.EventArgs class. More... | |
Public Attributes | |
string | Name => _Name |
Gets the name of the item to resolve. More... | |
Assembly | RequestingAssembly => _RequestingAssembly |
Gets the assembly whose dependency is being resolved. More... | |
Additional Inherited Members | |
![]() | |
static readonly EventArgs | Empty = new EventArgs() |
Provides a value to use with events that do not have event data. More... | |
Provides data for loader resolution events, such as the E:System.AppDomain.TypeResolve, E:System.AppDomain.ResourceResolve, E:System.AppDomain.ReflectionOnlyAssemblyResolve, and E:System.AppDomain.AssemblyResolve events.
Definition at line 8 of file ResolveEventArgs.cs.
System.ResolveEventArgs.ResolveEventArgs | ( | string | name | ) |
Initializes a new instance of the T:System.ResolveEventArgs class, specifying the name of the item to resolve.
name | The name of an item to resolve. |
Definition at line 24 of file ResolveEventArgs.cs.
System.ResolveEventArgs.ResolveEventArgs | ( | string | name, |
Assembly | requestingAssembly | ||
) |
Initializes a new instance of the T:System.ResolveEventArgs class, specifying the name of the item to resolve and the assembly whose dependency is being resolved.
name | The name of an item to resolve. |
requestingAssembly | The assembly whose dependency is being resolved. |
Definition at line 32 of file ResolveEventArgs.cs.
string System.ResolveEventArgs.Name => _Name |
Gets the name of the item to resolve.
Definition at line 16 of file ResolveEventArgs.cs.
Assembly System.ResolveEventArgs.RequestingAssembly => _RequestingAssembly |
Gets the assembly whose dependency is being resolved.
Definition at line 20 of file ResolveEventArgs.cs.