Assembly.LoadFrom Method (String, Byte[], AssemblyHashAlgorithm)
Loads an assembly given its file name or path, hash value, and hash algorithm.
Assembly: mscorlib (in mscorlib.dll)
public static Assembly LoadFrom( string assemblyFile, byte[] hashValue, AssemblyHashAlgorithm hashAlgorithm )
Parameters
- assemblyFile
- Type: System.String
The name or path of the file that contains the manifest of the assembly.
- hashValue
- Type: System.Byte[]
The value of the computed hash code.
- hashAlgorithm
- Type: System.Configuration.Assemblies.AssemblyHashAlgorithm
The hash algorithm used for hashing files and for generating the strong name.
| Exception | Condition |
|---|---|
| ArgumentNullException |
assemblyFile is null. |
| FileNotFoundException |
assemblyFile is not found, or the module you are trying to load does not specify a file name extension. |
| FileLoadException |
A file that was found could not be loaded. |
| BadImageFormatException |
assemblyFile is not a valid assembly. -or- assemblyFile was compiled with a later version of the common language runtime than the version that is currently loaded. |
| SecurityException |
A codebase that does not start with "file://" was specified without the required WebPermission. |
| ArgumentException |
The assemblyFile parameter is an empty string (""). |
| PathTooLongException |
The assembly name is longer than MAX_PATH characters. |
The assemblyFile parameter must refer to a URI without escape characters. This method supplies escape characters for all invalid characters in the URI.
Note
|
|---|
|
File transfer protocol (FTP) is not supported. If the URI supplied for assemblyFile is an FTP address, the assembly is not loaded. No exception is thrown. |
assemblyFile may be absolute or relative to the current directory, and the assembly is loaded into the domain of the caller.
Assemblies can be loaded into one of three contexts, or can be loaded without context:
-
The load context contains assemblies found by probing: in the global assembly cache, in a host assembly store if the runtime is hosted, or in the ApplicationBase and PrivateBinPath of the application domain. Most overloads of the Load method load assemblies into this context.
-
The load-from context contains assemblies for which the user provided a path that is not included in probing. LoadFrom, CreateInstanceFrom, and ExecuteAssembly are examples of methods that load by path.
-
The reflection-only context contains assemblies loaded with the ReflectionOnlyLoad and ReflectionOnlyLoadFrom methods; code in these contexts cannot be executed.
-
If the user generated or found the assembly, it is not in any context. This applies to assemblies loaded using overloads of the Load method that specify a byte array containing an assembly, and to transient dynamic assemblies created with reflection emit and not saved to disk.
The load-from context allows an assembly to be loaded from a path that is not included in probing, and yet allows dependencies on that path to be found and loaded because the path information is maintained by the context.
The LoadFrom method has the following disadvantages. Consider using Load instead.
-
If an assembly with the same identity is already loaded, LoadFrom returns the loaded assembly even if a different path was specified.
-
If an assembly is loaded with LoadFrom, and later an assembly in the load context attempts to load same the assembly by display name, the load attempt fails. This can occur when an assembly is deserialized.
-
If an assembly is loaded with LoadFrom, and the probing path includes an assembly with the same identity but a different location, an InvalidCastException, MissingMethodException, or other unexpected behavior can occur.
-
LoadFrom demands FileIOPermissionAccess.Read and FileIOPermissionAccess.PathDiscovery, or WebPermission, on the specified path.
-
If a native image exists for assemblyFile, it is not used. The assembly cannot be loaded as domain-neutral.
The assembly is loaded with the evidence that the loader supplies.
-
SecurityPermission
to load an assembly with evidence. Associated enumeration: SecurityPermissionFlag.ControlEvidence
-
FileIOPermission
for reading a URI that begins with "file://". Associated enumeration: FileIOPermissionAccess.Read
-
WebPermission
for reading a URI that does not begin with "file://".
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note