Clase DefaultDllImportSearchPathsAttribute
Publicado: noviembre de 2016
Especifica las rutas de acceso que se usan para buscar archivos DLL que proporcionan funciones para las invocaciones de plataforma.
Espacio de nombres: System.Runtime.InteropServices
Ensamblado: mscorlib (en mscorlib.dll)
Jerarquía de herencia
System.Object
System.Attribute
System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute
Sintaxis
[AttributeUsageAttribute(AttributeTargets.Assembly | AttributeTargets.Method,
AllowMultiple = false)]
[ComVisibleAttribute(false)]
public sealed class DefaultDllImportSearchPathsAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Assembly | AttributeTargets::Method,
AllowMultiple = false)]
[ComVisibleAttribute(false)]
public ref class DefaultDllImportSearchPathsAttribute sealed : Attribute
[<Sealed>]
[<AttributeUsageAttribute(AttributeTargets.Assembly | AttributeTargets.Method,
AllowMultiple = false)>]
[<ComVisibleAttribute(false)>]
type DefaultDllImportSearchPathsAttribute =
class
inherit Attribute
end
<AttributeUsageAttribute(AttributeTargets.Assembly Or AttributeTargets.Method,
AllowMultiple := False)>
<ComVisibleAttribute(False)>
Public NotInheritable Class DefaultDllImportSearchPathsAttribute
Inherits Attribute
Constructores
Nombre | Descripción | |
---|---|---|
DefaultDllImportSearchPathsAttribute(DllImportSearchPath) | Inicializa una nueva instancia de la DefaultDllImportSearchPathsAttribute clase, especificando las rutas de acceso que se usará al buscar los destinos de plataforma, se invoca. |
Propiedades
Nombre | Descripción | |
---|---|---|
Paths | Obtiene una combinación bit a bit de valores de enumeración que especifican las rutas de acceso que el LoadLibraryEx invoca la función búsquedas durante la plataforma. |
|
TypeId | Cuando se implementa en una clase derivada, obtiene un identificador único para este Attribute.(Heredado de Attribute). |
Métodos
Nombre | Descripción | |
---|---|---|
Equals(Object) | Esta API admite la infraestructura producto y no está diseñada para usarse directamente desde el código. Devuelve un valor que indica si esta instancia es igual que un objeto especificado.(Heredado de Attribute). |
|
GetHashCode() | Devuelve el código hash de esta instancia.(Heredado de Attribute). |
|
GetType() | Obtiene el Type de la instancia actual.(Heredado de Object). |
|
IsDefaultAttribute() | Si se reemplaza en una clase derivada, indica si el valor de esta instancia es el valor predeterminado de la clase derivada.(Heredado de Attribute). |
|
Match(Object) | Cuando se invalida en una clase derivada, devuelve un valor que indica si esta instancia es igual a un objeto especificado.(Heredado de Attribute). |
|
ToString() | Devuelve una cadena que representa el objeto actual.(Heredado de Object). |
Implementaciones de interfaz explícitas
Nombre | Descripción | |
---|---|---|
_Attribute.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr) | Asigna un conjunto de nombres a un conjunto correspondiente de identificadores de envío.(Heredado de Attribute). |
|
_Attribute.GetTypeInfo(UInt32, UInt32, IntPtr) | Obtiene la información de tipos de un objeto, que puede utilizarse para obtener la información de tipos de una interfaz.(Heredado de Attribute). |
|
_Attribute.GetTypeInfoCount(UInt32) | Recupera el número de interfaces de información de tipo que proporciona un objeto (0 ó 1).(Heredado de Attribute). |
|
_Attribute.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr) | Proporciona acceso a las propiedades y los métodos expuestos por un objeto.(Heredado de Attribute). |
Comentarios
When applied to an assembly, this attribute specifies the paths that are used by default to search for any DLL that provides a function for a platform invoke, in any code in the assembly. When applied to an individual platform invoke, this attribute overrides the default search paths that were specified for the assembly.
This attribute is ignored for any platform invoke that specifies an absolute path.
Use this attribute to prevent the Win32 LoadLibraryEx function from searching the current working directory. This helps protect your application from attacks in which malicious software places a DLL in the current working directory, so that when a platform invoke calls the Win32 LoadLibraryEx function, the function's default search order finds the malicious DLL instead of the system DLL it was intended to find.
The common language runtime handles the call to the LoadLibraryExhttps://go.microsoft.com/fwlink/?LinkId=236091function according to the following algorithm:
If the attribute is applied to an individual platform invoke, use the values specified by that instance of the attribute.
Otherwise, if the attribute is applied to the assembly that contains the platform invoke, use the values specified by that instance of the attribute.
Otherwise, search the assembly directory and then call the LoadLibraryEx function with the LOAD_WITH_ALTERED_SEARCH_PATH flag.
Información de versión
Plataforma universal de Windows
Disponible desde 8
.NET Framework
Disponible desde 4.5
Biblioteca de clases portable
Se admite en: plataformas portátiles de .NET
Windows Phone
Disponible desde 8.1
Seguridad para subprocesos
Cualquier miembro ( Compartido en Visual Basic) estático público de este tipo es seguro para subprocesos. No se garantiza que los miembros de instancia sean seguros para subprocesos.
Ver también
DllImportSearchPath
Espacio de nombres System.Runtime.InteropServices
LoadLibraryEx
Volver al principio