PermissionSet.ToString 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 une représentation de chaîne de PermissionSet.
public:
override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String
Retours
Représentation de PermissionSet.
Exemples
L’exemple de code suivant montre l’utilisation de la ToString méthode . Cet exemple de code fait partie d’un exemple plus grand fourni pour la PermissionSet classe .
Console::WriteLine( "Value of the permission set ToString = \n{0}", ps1->ToString() );
Console.WriteLine("Value of the permission set ToString = \n" + ps1.ToString());
Console.WriteLine("Value of the permission set ToString = " & ControlChars.Lf & ps1.ToString())
Remarques
La représentation sous forme de chaîne est utile dans le débogage pour voir l’état d’un PermissionSet.