Пример #1
0
 /// <summary>
 /// Gets the link to the end point
 /// </summary>
 /// <param name="Match">Match found</param>
 /// <returns>The end point or empty string</returns>
 protected static string GetLink(Match Match)
 {
     if (Match.Value.IndexOf("openid.server") > 0)
     {
         Match = Href.Match(Match.Value);
         if (Match.Success)
         {
             return(Match.Groups[1].Value);
         }
     }
     return("");
 }