Compartir a través de


HttpHandlerAction.Validate Propiedad

Definición

Obtiene o establece la validación HttpHandlerAction.

public:
 property bool Validate { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("validate", DefaultValue=true)]
public bool Validate { get; set; }
[<System.Configuration.ConfigurationProperty("validate", DefaultValue=true)>]
member this.Validate : bool with get, set
Public Property Validate As Boolean

Valor de propiedad

Boolean

Es true si se permite la validación; en caso contrario, es false.

Atributos

Ejemplos

El siguiente ejemplo de código muestra cómo obtener acceso a la propiedad Validate.

// Change the Validate for the HttpHandlerAction.
httpHandler.Validate = false;
' Change the Validate for the HttpHandlerAction.
httpHandler.Validate = False

Comentarios

Si la Validate propiedad es false, ASP.NET no intentará cargar la clase hasta que llegue la solicitud coincidente real, lo que podría retrasar el error pero mejorar el tiempo de inicio.

Se aplica a