Assembly.ReflectionOnlyLoad Method (String)
Assembly: mscorlib (in mscorlib.dll)
Parameters
- assemblyString
The display name of the assembly, as returned by the AssemblyName.FullName property.
Return Value
An Assembly object that represents the loaded assembly.Dependencies are not automatically loaded into the reflection-only context.
You cannot execute code from an assembly loaded into the reflection-only context. To execute code, the assembly must be loaded into the execution context as well, using the Load method.
Whether certain permissions are granted or not granted to an assembly is based on evidence. The rules for assembly and security evidence merging are as follows:
Note |
|---|
| Reflecting on executable files compiled in C++ might throw a FileLoadException. This is most likely caused by the C++ compiler stripping the relocation addresses or the .reloc section from your executable file. To preserve the .reloc address, specify /fixed:no when you are linking. |
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Note