SPUtility.AutoHyperlinking - Méthode
Convertit les URL et les adresses e-mail dans une chaîne de texte brut dans des liens hypertexte dans une chaîne codée en HTML.
Espace de noms : Microsoft.SharePoint.Utilities
Assembly : Microsoft.SharePoint (dans Microsoft.SharePoint.dll)
Syntaxe
'Déclaration
Public Shared Function AutoHyperlinking ( _
value As String _
) As String
'Utilisation
Dim value As String
Dim returnValue As String
returnValue = SPUtility.AutoHyperlinking(value)
public static string AutoHyperlinking(
string value
)
Paramètres
value
Type : System.StringChaîne qui contient du texte brut.
Valeur renvoyée
Type : System.String
Une chaîne HTML contenant une version codée de la chaîne d'origine avec des URL incorporées et adresses e-mail convertis en liens hypertexte.
Remarques
Cette méthode recherche toutes les URL ou e-mail adresses dans la chaîne spécifiée et les convertit dans des balises HTML A .
Exemples
L'exemple suivant fait partie d'une application de console qui convertit une URL et une adresse de messagerie en deux liens hypertexte.
string plainText = "For more information on "Sample Product", see https://www.microsoft.com or e-mail someone@microsoft.com.";
string htmlText = SPUtility.AutoHyperlinking(plainText);
Console.WriteLine(htmlText);
L'exemple génère la sortie suivante :
For more information on "Sample Product", see <a href="https://www.microsoft.com">https://www.microsoft.com</a> or e-mail <a href="mailto:someone@microsoft.com">someone@microsoft.com</a>.