@@ -68,7 +68,7 @@ public HtmlTokenKind Kind {
6868 /// </remarks>
6969 /// <param name="output">The output.</param>
7070 /// <exception cref="System.ArgumentNullException">
71- /// <paramref name="output"/> is <c> null</c >.
71+ /// <paramref name="output"/> is <see langword=" null"/ >.
7272 /// </exception>
7373 public abstract void WriteTo ( TextWriter output ) ;
7474
@@ -104,9 +104,9 @@ public class HtmlCommentToken : HtmlToken
104104 /// Creates a new <see cref="HtmlCommentToken"/>.
105105 /// </remarks>
106106 /// <param name="comment">The comment text.</param>
107- /// <param name="bogus"><c> true</c > if the comment is bogus; otherwise, <c> false</c >.</param>
107+ /// <param name="bogus"><see langword=" true" / > if the comment is bogus; otherwise, <see langword=" false" / >.</param>
108108 /// <exception cref="System.ArgumentNullException">
109- /// <paramref name="comment"/> is <c> null</c >.
109+ /// <paramref name="comment"/> is <see langword=" null"/ >.
110110 /// </exception>
111111 public HtmlCommentToken ( string comment , bool bogus = false ) : base ( HtmlTokenKind . Comment )
112112 {
@@ -129,12 +129,12 @@ public string Comment {
129129 }
130130
131131 /// <summary>
132- /// Get whether or not the comment is a bogus comment.
132+ /// Get whether the comment is a bogus comment.
133133 /// </summary>
134134 /// <remarks>
135- /// Gets whether or not the comment is a bogus comment.
135+ /// Gets whether the comment is a bogus comment.
136136 /// </remarks>
137- /// <value><c> true</c > if the comment is bogus; otherwise, <c> false</c >.</value>
137+ /// <value><see langword=" true" / > if the comment is bogus; otherwise, <see langword=" false" / >.</value>
138138 public bool IsBogusComment {
139139 get ; private set ;
140140 }
@@ -151,7 +151,7 @@ internal bool IsBangComment {
151151 /// </remarks>
152152 /// <param name="output">The output.</param>
153153 /// <exception cref="System.ArgumentNullException">
154- /// <paramref name="output"/> is <c> null</c >.
154+ /// <paramref name="output"/> is <see langword=" null"/ >.
155155 /// </exception>
156156 public override void WriteTo ( TextWriter output )
157157 {
@@ -192,7 +192,7 @@ public class HtmlDataToken : HtmlToken
192192 /// <paramref name="kind"/> is not a valid <see cref="HtmlTokenKind"/>.
193193 /// </exception>
194194 /// <exception cref="System.ArgumentNullException">
195- /// <paramref name="data"/> is <c> null</c >.
195+ /// <paramref name="data"/> is <see langword=" null"/ >.
196196 /// </exception>
197197 protected HtmlDataToken ( HtmlTokenKind kind , string data ) : base ( kind )
198198 {
@@ -218,7 +218,7 @@ protected HtmlDataToken (HtmlTokenKind kind, string data) : base (kind)
218218 /// </remarks>
219219 /// <param name="data">The character data.</param>
220220 /// <exception cref="System.ArgumentNullException">
221- /// <paramref name="data"/> is <c> null</c >.
221+ /// <paramref name="data"/> is <see langword=" null"/ >.
222222 /// </exception>
223223 public HtmlDataToken ( string data ) : base ( HtmlTokenKind . Data )
224224 {
@@ -252,7 +252,7 @@ public string Data {
252252 /// </remarks>
253253 /// <param name="output">The output.</param>
254254 /// <exception cref="System.ArgumentNullException">
255- /// <paramref name="output"/> is <c> null</c >.
255+ /// <paramref name="output"/> is <see langword=" null"/ >.
256256 /// </exception>
257257 public override void WriteTo ( TextWriter output )
258258 {
@@ -269,7 +269,7 @@ public override void WriteTo (TextWriter output)
269269 }
270270
271271 /// <summary>
272- /// An HTML token constisting of <c>[CDATA[</c>.
272+ /// An HTML token consisting of <c>[CDATA[</c>.
273273 /// </summary>
274274 /// <remarks>
275275 /// An HTML token consisting of <c>[CDATA[</c>.
@@ -284,7 +284,7 @@ public class HtmlCDataToken : HtmlDataToken
284284 /// </remarks>
285285 /// <param name="data">The character data.</param>
286286 /// <exception cref="System.ArgumentNullException">
287- /// <paramref name="data"/> is <c> null</c >.
287+ /// <paramref name="data"/> is <see langword=" null"/ >.
288288 /// </exception>
289289 public HtmlCDataToken ( string data ) : base ( HtmlTokenKind . CData , data )
290290 {
@@ -299,7 +299,7 @@ public HtmlCDataToken (string data) : base (HtmlTokenKind.CData, data)
299299 /// </remarks>
300300 /// <param name="output">The output.</param>
301301 /// <exception cref="System.ArgumentNullException">
302- /// <paramref name="output"/> is <c> null</c >.
302+ /// <paramref name="output"/> is <see langword=" null"/ >.
303303 /// </exception>
304304 public override void WriteTo ( TextWriter output )
305305 {
@@ -328,7 +328,7 @@ public class HtmlScriptDataToken : HtmlDataToken
328328 /// </remarks>
329329 /// <param name="data">The script data.</param>
330330 /// <exception cref="System.ArgumentNullException">
331- /// <paramref name="data"/> is <c> null</c >.
331+ /// <paramref name="data"/> is <see langword=" null"/ >.
332332 /// </exception>
333333 public HtmlScriptDataToken ( string data ) : base ( HtmlTokenKind . ScriptData , data )
334334 {
@@ -343,7 +343,7 @@ public HtmlScriptDataToken (string data) : base (HtmlTokenKind.ScriptData, data)
343343 /// </remarks>
344344 /// <param name="output">The output.</param>
345345 /// <exception cref="System.ArgumentNullException">
346- /// <paramref name="output"/> is <c> null</c >.
346+ /// <paramref name="output"/> is <see langword=" null"/ >.
347347 /// </exception>
348348 public override void WriteTo ( TextWriter output )
349349 {
@@ -372,11 +372,11 @@ public class HtmlTagToken : HtmlToken
372372 /// </remarks>
373373 /// <param name="name">The name of the tag.</param>
374374 /// <param name="attributes">The attributes.</param>
375- /// <param name="isEmptyElement"><c> true</c > if the tag is an empty element; otherwise, <c> false</c >.</param>
375+ /// <param name="isEmptyElement"><see langword=" true" / > if the tag is an empty element; otherwise, <see langword=" false" / >.</param>
376376 /// <exception cref="System.ArgumentNullException">
377- /// <para><paramref name="name"/> is <c> null</c >.</para>
377+ /// <para><paramref name="name"/> is <see langword=" null"/ >.</para>
378378 /// <para>-or-</para>
379- /// <para><paramref name="attributes"/> is <c> null</c >.</para>
379+ /// <para><paramref name="attributes"/> is <see langword=" null"/ >.</para>
380380 /// </exception>
381381 public HtmlTagToken ( string name , IEnumerable < HtmlAttribute > attributes , bool isEmptyElement ) : base ( HtmlTokenKind . Tag )
382382 {
@@ -398,9 +398,9 @@ public HtmlTagToken (string name, IEnumerable<HtmlAttribute> attributes, bool is
398398 /// Creates a new <see cref="HtmlTagToken"/>.
399399 /// </remarks>
400400 /// <param name="name">The name of the tag.</param>
401- /// <param name="isEndTag"><c> true</c > if the tag is an end tag; otherwise, <c> false</c >.</param>
401+ /// <param name="isEndTag"><see langword=" true" / > if the tag is an end tag; otherwise, <see langword=" false" / >.</param>
402402 /// <exception cref="System.ArgumentNullException">
403- /// <paramref name="name"/> is <c> null</c >.
403+ /// <paramref name="name"/> is <see langword=" null"/ >.
404404 /// </exception>
405405 public HtmlTagToken ( string name , bool isEndTag ) : base ( HtmlTokenKind . Tag )
406406 {
@@ -440,23 +440,23 @@ public HtmlTagId Id {
440440 }
441441
442442 /// <summary>
443- /// Get whether or not the tag is an empty element.
443+ /// Get whether the tag is an empty element.
444444 /// </summary>
445445 /// <remarks>
446- /// Gets whether or not the tag is an empty element.
446+ /// Gets whether the tag is an empty element.
447447 /// </remarks>
448- /// <value><c> true</c > if the tag is an empty element; otherwise, <c> false</c >.</value>
448+ /// <value><see langword=" true" / > if the tag is an empty element; otherwise, <see langword=" false" / >.</value>
449449 public bool IsEmptyElement {
450450 get ; internal set ;
451451 }
452452
453453 /// <summary>
454- /// Get whether or not the tag is an end tag.
454+ /// Get whether the tag is an end tag.
455455 /// </summary>
456456 /// <remarks>
457- /// Gets whether or not the tag is an end tag.
457+ /// Gets whether the tag is an end tag.
458458 /// </remarks>
459- /// <value><c> true</c > if the tag is an end tag; otherwise, <c> false</c >.</value>
459+ /// <value><see langword=" true" / > if the tag is an end tag; otherwise, <see langword=" false" / >.</value>
460460 public bool IsEndTag {
461461 get ; private set ;
462462 }
@@ -480,7 +480,7 @@ public string Name {
480480 /// </remarks>
481481 /// <param name="output">The output.</param>
482482 /// <exception cref="System.ArgumentNullException">
483- /// <paramref name="output"/> is <c> null</c >.
483+ /// <paramref name="output"/> is <see langword=" null"/ >.
484484 /// </exception>
485485 public override void WriteTo ( TextWriter output )
486486 {
@@ -532,12 +532,12 @@ internal string RawTagName {
532532 }
533533
534534 /// <summary>
535- /// Get whether or not quirks-mode should be forced.
535+ /// Get whether quirks-mode should be forced.
536536 /// </summary>
537537 /// <remarks>
538- /// Gets whether or not quirks-mode should be forced.
538+ /// Gets whether quirks-mode should be forced.
539539 /// </remarks>
540- /// <value><c> true</c > if quirks-mode should be forced; otherwise, <c> false</c >.</value>
540+ /// <value><see langword=" true" / > if quirks-mode should be forced; otherwise, <see langword=" false" / >.</value>
541541 public bool ForceQuirksMode {
542542 get ; set ;
543543 }
@@ -580,7 +580,7 @@ public string PublicIdentifier {
580580 /// <remarks>
581581 /// Gets the public keyword that was used.
582582 /// </remarks>
583- /// <value>The public keyword or <c> null</c > if it wasn't used.</value>
583+ /// <value>The public keyword or <see langword=" null"/ > if it wasn't used.</value>
584584 public string PublicKeyword {
585585 get ; internal set ;
586586 }
@@ -611,7 +611,7 @@ public string SystemIdentifier {
611611 /// <remarks>
612612 /// Gets the system keyword that was used.
613613 /// </remarks>
614- /// <value>The system keyword or <c> null</c > if it wasn't used.</value>
614+ /// <value>The system keyword or <see langword=" null"/ > if it wasn't used.</value>
615615 public string SystemKeyword {
616616 get ; internal set ;
617617 }
@@ -624,7 +624,7 @@ public string SystemKeyword {
624624 /// </remarks>
625625 /// <param name="output">The output.</param>
626626 /// <exception cref="System.ArgumentNullException">
627- /// <paramref name="output"/> is <c> null</c >.
627+ /// <paramref name="output"/> is <see langword=" null"/ >.
628628 /// </exception>
629629 public override void WriteTo ( TextWriter output )
630630 {
0 commit comments