DllImportSearchPath Enumeration
.NET Framework 4.5
Specifies the paths that are used to search for DLLs that provide functions for platform invokes.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.Runtime.InteropServices
Assembly: mscorlib (in mscorlib.dll)
| Member name | Description | |
|---|---|---|
![]() | UseDllDirectoryForDependencies | Search for the dependencies of a DLL in the folder where the DLL is located before searching other folders. |
![]() | ApplicationDirectory | Include the application directory in the DLL search path. |
![]() | UserDirectories | Include any path that was explicitly added to the process-wide search path by using the Win32 AddDllDirectory function. |
![]() | System32 | Include the %WinDir%\System32 directory in the DLL search path. |
![]() | SafeDirectories | Include the application directory, the %WinDir%\System32 directory, and user directories in the DLL search path. |
![]() | AssemblyDirectory | When searching for assembly dependencies, include the directory that contains the assembly itself, and search that directory first. This value is used by the .NET Framework, before the paths are passed to the Win32 LoadLibraryEx function. |
![]() | LegacyBehavior | Search the application directory, and then call the Win32 LoadLibraryEx function with the LOAD_WITH_ALTERED_SEARCH_PATH flag. This value is ignored if any other value is specified. Operating systems that do not support the DefaultDllImportSearchPathsAttribute attribute use this value, and ignore other values. |
Use the DefaultDllImportSearchPathsAttribute attribute to apply a set of paths to an entire assembly or to an individual platform invoke.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
