FormsAuthenticationUserCollection.Clear 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.
Supprime tous les objets FormsAuthenticationUser de la collection.
public:
void Clear();
public void Clear ();
member this.Clear : unit -> unit
Public Sub Clear ()
Exceptions
La collection est en lecture seule.
Exemples
L'exemple de code suivant montre comment utiliser la méthode Clear.
// Using method Clear.
formsAuthenticationCredentials.Users.Clear();
// Update if not locked
if (!authenticationSection.SectionInformation.IsLocked)
{
configuration.Save();
}
' Using method Clear.
formsAuthenticationCredentials.Users.Clear()
' Update if not locked
If Not authenticationSection.SectionInformation.IsLocked Then
configuration.Save()
End If
Remarques
Cette méthode insère une clear
directive dans la section appropriée du fichier de configuration pour effacer toutes les références aux éléments définis dans un fichier de configuration de niveau supérieur. Tous les éléments définis dans la section appropriée du fichier de configuration actuel sont supprimés.