コード例 #1
0
ファイル: Autolink.cs プロジェクト: mike-ward/twitter-text-cs
 /// <summary>
 /// Initializes a new instance of the <see cref="Autolink"/> class.
 /// </summary>
 /// <param name="linkURLWithoutProtocol">Whether or not to link urls without a protocol</param>
 public Autolink(bool linkURLWithoutProtocol)
 {
     _extractor = new Extractor {
         ExtractUrlWithoutProtocol = linkURLWithoutProtocol
     };
 }