SecurityElement.IsValidTag(String) Méthode

Définition

Détermine si une chaîne est une balise valide.

public:
 static bool IsValidTag(System::String ^ tag);
public static bool IsValidTag (string? tag);
public static bool IsValidTag (string tag);
static member IsValidTag : string -> bool
Public Shared Function IsValidTag (tag As String) As Boolean

Paramètres

tag
String

Balise dont la validité doit être vérifiée.

Retours

Boolean

true si le paramètre tag est une balise XML valide ; sinon, false.

Exemples

Le code suivant illustre l’utilisation de la IsValidTag méthode pour déterminer si une chaîne est une balise d’attribut valide. Cet exemple de code fait partie d’un exemple plus complet fourni pour la SecurityElement classe.

if ( SecurityElement::IsValidTag( tagName ) )
if (SecurityElement.IsValidTag(tagName))
If SecurityElement.IsValidTag(tagName) Then

Remarques

Cela peut être utilisé pour tester un Tag avant de le définir.

S’applique à