AppDomain.Load Method
.NET Framework 2.0
Loads an Assembly into this application domain.
| Name | Description |
|---|---|
| AppDomain.Load (AssemblyName) | Loads an Assembly given its AssemblyName. |
| AppDomain.Load (Byte[]) | Loads the Assembly with a common object file format (COFF) based image containing an emitted Assembly. |
| AppDomain.Load (String) | Loads an Assembly given its display name. |
| AppDomain.Load (AssemblyName, Evidence) | Loads an Assembly given its AssemblyName. |
| AppDomain.Load (Byte[], Byte[]) | Loads the Assembly with a common object file format (COFF) based image containing an emitted Assembly. The raw bytes representing the symbols for the Assembly are also loaded. |
| AppDomain.Load (String, Evidence) | Loads an Assembly given its display name. |
| AppDomain.Load (Byte[], Byte[], Evidence) | Loads the Assembly with a common object file format (COFF) based image containing an emitted Assembly. The raw bytes representing the symbols for the Assembly are also loaded. |