HtmlKit.HtmlTokenizer.CreateCommentToken C# (CSharp) Method

CreateCommentToken() protected method

Create an HTML comment token.
Creates an HTML comment token.
protected CreateCommentToken ( string comment, bool bogus = false ) : HtmlCommentToken
comment string The comment.
bogus bool true if the comment is bogus; otherwise, false.
return HtmlCommentToken
		protected virtual HtmlCommentToken CreateCommentToken (string comment, bool bogus = false)
		{
			return new HtmlCommentToken (comment, bogus);
		}
HtmlTokenizer