Executes the assembly given its display name, using the specified evidence and arguments.
Public Function ExecuteAssemblyByName ( _ assemblyName As String, _ assemblySecurity As Evidence, _ ParamArray args As String() _ ) As Integer
Dim instance As AppDomain Dim assemblyName As String Dim assemblySecurity As Evidence Dim args As String() Dim returnValue As Integer returnValue = instance.ExecuteAssemblyByName(assemblyName, _ assemblySecurity, args)
public int ExecuteAssemblyByName( string assemblyName, Evidence assemblySecurity, params string[] args )
public: int ExecuteAssemblyByName( String^ assemblyName, Evidence^ assemblySecurity, ... array<String^>^ args )
public function ExecuteAssemblyByName( assemblyName : String, assemblySecurity : Evidence, ... args : String[] ) : int
assemblyName is nullNothingnullptra null reference (Nothing in Visual Basic).
The assembly specified by assemblyName is not found.
The assembly specified by assemblyName was found, but could not be loaded.
The assembly specified by assemblyName is not a valid assembly.
-or-
Version 2.0 or later of the common language runtime is currently loaded and assemblyName was compiled with a later version.
The operation is attempted on an unloaded application domain.
The ExecuteAssemblyByName method provides similar functionality to the ExecuteAssembly method, but specifies the assembly by display name or AssemblyName rather than by file location. Therefore, ExecuteAssemblyByName loads assemblies with the Load method rather than with the LoadFile method.
The assembly begins executing at the entry point specified in the .NET Framework header.
This method does not create a new process or application domain, and it does not execute the entry point method on a new thread.
When you use the ExecuteAssemblyByName method with an Evidence parameter, pieces of evidence are merged. Pieces of evidence supplied as an argument to the ExecuteAssemblyByName method supersede pieces of evidence supplied by the loader.
for access to read from a file or directory, for access to the information in the path itself, and for redirecting a display name to a path. Associated enumerations: FileIOPermissionAccess..::.Read, FileIOPermissionAccess..::.PathDiscovery.
to load an assembly with evidence. Associated enumeration: SecurityPermissionFlag..::.ControlEvidence.
for access to a Web site, when a display name is redirected to a URL.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98