Control.OnUnload(EventArgs) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Déclenche l’événement Unload.
protected:
virtual void OnUnload(EventArgs ^ e);
protected public:
virtual void OnUnload(EventArgs ^ e);
protected virtual void OnUnload (EventArgs e);
protected internal virtual void OnUnload (EventArgs e);
abstract member OnUnload : EventArgs -> unit
override this.OnUnload : EventArgs -> unit
Protected Overridable Sub OnUnload (e As EventArgs)
Protected Friend Overridable Sub OnUnload (e As EventArgs)
Paramètres
Exemples
// Override the OnUnLoad method to set _text to
// a default value if it is null.
protected override void OnUnload(EventArgs e)
{
base.OnUnload(e);
if (_text == null)
_text = "Here is some default text.";
}
' Override the OnUnLoad method to set _text to
' a default value if it is null.
Protected Overrides Sub OnUnload(ByVal e As EventArgs)
MyBase.OnUnload(e)
If _text Is Nothing Then
_text = "Here is some default text."
End If
End Sub
Remarques
ASP.NET appelle cette méthode pour déclencher l’événement Unload . Si vous développez un contrôle personnalisé, vous pouvez remplacer cette méthode afin de fournir un traitement supplémentaire. Si vous remplacez cette méthode, appelez la méthode du contrôle de OnUnload base pour avertir les abonnés de l’événement.