@@ -145,7 +145,7 @@ public string Disposition {
145
145
/// <remarks>
146
146
/// A convenience property to determine if the entity should be considered an attachment or not.
147
147
/// </remarks>
148
- /// <value><c> true</c > if the <see cref="MimePart"/> is an attachment; otherwise, <c> false</c >.</value>
148
+ /// <value><see langword=" true" / > if the <see cref="MimePart"/> is an attachment; otherwise, <see langword=" false" / >.</value>
149
149
public bool IsAttachment {
150
150
get { return disposition . Equals ( Attachment , StringComparison . OrdinalIgnoreCase ) ; }
151
151
set { disposition = value ? Attachment : Inline ; }
@@ -356,7 +356,7 @@ internal string Encode (FormatOptions options, Encoding charset)
356
356
/// <returns>The serialized string.</returns>
357
357
/// <param name="options">The formatting options.</param>
358
358
/// <param name="charset">The charset to be used when encoding the parameter values.</param>
359
- /// <param name="encode">If set to <c> true</c >, the parameter values will be encoded.</param>
359
+ /// <param name="encode">If set to <see langword=" true" / >, the parameter values will be encoded.</param>
360
360
/// <exception cref="System.ArgumentNullException">
361
361
/// <para><paramref name="options"/> is <see langword="null"/>.</para>
362
362
/// <para>-or-</para>
@@ -394,7 +394,7 @@ public string ToString (FormatOptions options, Encoding charset, bool encode)
394
394
/// </remarks>
395
395
/// <returns>The serialized string.</returns>
396
396
/// <param name="charset">The charset to be used when encoding the parameter values.</param>
397
- /// <param name="encode">If set to <c> true</c >, the parameter values will be encoded.</param>
397
+ /// <param name="encode">If set to <see langword=" true" / >, the parameter values will be encoded.</param>
398
398
/// <exception cref="System.ArgumentNullException">
399
399
/// <paramref name="charset"/> is <see langword="null"/>.
400
400
/// </exception>
@@ -411,7 +411,7 @@ public string ToString (Encoding charset, bool encode)
411
411
/// optionally encoding the parameters as they would be encoded for transport.
412
412
/// </remarks>
413
413
/// <returns>The serialized string.</returns>
414
- /// <param name="encode">If set to <c> true</c >, the parameter values will be encoded.</param>
414
+ /// <param name="encode">If set to <see langword=" true" / >, the parameter values will be encoded.</param>
415
415
public string ToString ( bool encode )
416
416
{
417
417
return ToString ( FormatOptions . Default , Encoding . UTF8 , encode ) ;
@@ -532,7 +532,7 @@ internal static bool TryParse (ParserOptions options, byte[] text, ref int index
532
532
/// Parses a Content-Disposition value from the supplied buffer starting at the given index
533
533
/// and spanning across the specified number of bytes.
534
534
/// </remarks>
535
- /// <returns><c> true</c > if the disposition was successfully parsed; otherwise, <c> false</c >.</returns>
535
+ /// <returns><see langword=" true" / > if the disposition was successfully parsed; otherwise, <see langword=" false" / >.</returns>
536
536
/// <param name="options">The parser options.</param>
537
537
/// <param name="buffer">The input buffer.</param>
538
538
/// <param name="startIndex">The starting index of the input buffer.</param>
@@ -563,7 +563,7 @@ public static bool TryParse (ParserOptions options, byte[] buffer, int startInde
563
563
/// Parses a Content-Disposition value from the supplied buffer starting at the given index
564
564
/// and spanning across the specified number of bytes.
565
565
/// </remarks>
566
- /// <returns><c> true</c > if the disposition was successfully parsed; otherwise, <c> false</c >.</returns>
566
+ /// <returns><see langword=" true" / > if the disposition was successfully parsed; otherwise, <see langword=" false" / >.</returns>
567
567
/// <param name="buffer">The input buffer.</param>
568
568
/// <param name="startIndex">The starting index of the input buffer.</param>
569
569
/// <param name="length">The number of bytes in the input buffer to parse.</param>
@@ -586,7 +586,7 @@ public static bool TryParse (byte[] buffer, int startIndex, int length, out Cont
586
586
/// <remarks>
587
587
/// Parses a Content-Disposition value from the supplied buffer starting at the specified index.
588
588
/// </remarks>
589
- /// <returns><c> true</c > if the disposition was successfully parsed; otherwise, <c> false</c >.</returns>
589
+ /// <returns><see langword=" true" / > if the disposition was successfully parsed; otherwise, <see langword=" false" / >.</returns>
590
590
/// <param name="options">The parser options.</param>
591
591
/// <param name="buffer">The input buffer.</param>
592
592
/// <param name="startIndex">The starting index of the input buffer.</param>
@@ -614,7 +614,7 @@ public static bool TryParse (ParserOptions options, byte[] buffer, int startInde
614
614
/// <remarks>
615
615
/// Parses a Content-Disposition value from the supplied buffer starting at the specified index.
616
616
/// </remarks>
617
- /// <returns><c> true</c > if the disposition was successfully parsed; otherwise, <c> false</c >.</returns>
617
+ /// <returns><see langword=" true" / > if the disposition was successfully parsed; otherwise, <see langword=" false" / >.</returns>
618
618
/// <param name="buffer">The input buffer.</param>
619
619
/// <param name="startIndex">The starting index of the input buffer.</param>
620
620
/// <param name="disposition">The parsed disposition.</param>
@@ -635,7 +635,7 @@ public static bool TryParse (byte[] buffer, int startIndex, out ContentDispositi
635
635
/// <remarks>
636
636
/// Parses a Content-Disposition value from the specified buffer.
637
637
/// </remarks>
638
- /// <returns><c> true</c > if the disposition was successfully parsed; otherwise, <c> false</c >.</returns>
638
+ /// <returns><see langword=" true" / > if the disposition was successfully parsed; otherwise, <see langword=" false" / >.</returns>
639
639
/// <param name="options">The parser options.</param>
640
640
/// <param name="buffer">The input buffer.</param>
641
641
/// <param name="disposition">The parsed disposition.</param>
@@ -659,7 +659,7 @@ public static bool TryParse (ParserOptions options, byte[] buffer, out ContentDi
659
659
/// <remarks>
660
660
/// Parses a Content-Disposition value from the specified buffer.
661
661
/// </remarks>
662
- /// <returns><c> true</c > if the disposition was successfully parsed; otherwise, <c> false</c >.</returns>
662
+ /// <returns><see langword=" true" / > if the disposition was successfully parsed; otherwise, <see langword=" false" / >.</returns>
663
663
/// <param name="buffer">The input buffer.</param>
664
664
/// <param name="disposition">The parsed disposition.</param>
665
665
/// <exception cref="System.ArgumentNullException">
@@ -676,7 +676,7 @@ public static bool TryParse (byte[] buffer, out ContentDisposition disposition)
676
676
/// <remarks>
677
677
/// Parses a Content-Disposition value from the supplied text.
678
678
/// </remarks>
679
- /// <returns><c> true</c > if the disposition was successfully parsed; otherwise, <c> false</c >.</returns>
679
+ /// <returns><see langword=" true" / > if the disposition was successfully parsed; otherwise, <see langword=" false" / >.</returns>
680
680
/// <param name="options">The parser options.</param>
681
681
/// <param name="text">The text to parse.</param>
682
682
/// <param name="disposition">The parsed disposition.</param>
@@ -701,7 +701,7 @@ public static bool TryParse (ParserOptions options, string text, out ContentDisp
701
701
/// <remarks>
702
702
/// Parses a Content-Disposition value from the supplied text.
703
703
/// </remarks>
704
- /// <returns><c> true</c > if the disposition was successfully parsed; otherwise, <c> false</c >.</returns>
704
+ /// <returns><see langword=" true" / > if the disposition was successfully parsed; otherwise, <see langword=" false" / >.</returns>
705
705
/// <param name="text">The text to parse.</param>
706
706
/// <param name="disposition">The parsed disposition.</param>
707
707
/// <exception cref="System.ArgumentNullException">
0 commit comments