HtmlKit.HtmlTokenizer.EmitCommentToken C# (CSharp) Method

EmitCommentToken() private method

private EmitCommentToken ( string comment, bool bogus = false ) : HtmlToken
comment string
bogus bool
return HtmlToken
		HtmlToken EmitCommentToken (string comment, bool bogus = false)
		{
			var token = CreateCommentToken (comment, bogus);
			data.Length = 0;
			name.Length = 0;
			return token;
		}

Same methods

HtmlTokenizer::EmitCommentToken ( StringBuilder comment, bool bogus = false ) : HtmlToken
HtmlTokenizer