RuleSettingsCollection.Contains(String) 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.
Retourne true
si la collection contient un objet RuleSettings portant le nom spécifié.
public:
bool Contains(System::String ^ name);
public bool Contains (string name);
member this.Contains : string -> bool
Public Function Contains (name As String) As Boolean
Paramètres
- name
- String
Nom d’un objet RuleSettings de la collection.
Retours
true
si la collection contient un objet RuleSettings portant le nom spécifié ; sinon, false
.
Exemples
L'exemple de code suivant montre comment utiliser la méthode Contains. Cet exemple de code fait partie d’un exemple plus grand fourni pour la HealthMonitoringSection classe.
// See if the Rules collection property contains the RuleSettings 'All Errors Default'.
Console.WriteLine("EventMappings contains 'All Errors Default': {0}.",
healthMonitoringSection.Rules.Contains("All Errors Default"));
' See if the Rules collection property contains the RuleSettings 'All Errors Default'.
Console.WriteLine("EventMappings contains 'All Errors Default': {0}.", _
healthMonitoringSection.Rules.Contains("All Errors Default"))
Remarques
Retourne false
si le nom spécifié n’existe pas.