File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ public static async Task<IImageFormat> DetectFormatAsync(
81
81
/// A return value indicates whether the operation succeeded.
82
82
/// </summary>
83
83
/// <param name="path">The image file to open and to read the header from.</param>
84
- /// <returns><see langword="true"/> if the information can be read; otherwise, <see langword="false "/></returns>
84
+ /// <returns>The <see cref="ImageInfo "/>. </returns>
85
85
/// <exception cref="ArgumentNullException">The path is null.</exception>
86
86
/// <exception cref="NotSupportedException">The file stream is not readable or the image format is not supported.</exception>
87
87
/// <exception cref="InvalidImageContentException">The encoded image contains invalid content.</exception>
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public static IImageFormat DetectFormat(Stream stream)
29
29
/// </summary>
30
30
/// <param name="options">The general decoder options.</param>
31
31
/// <param name="stream">The image stream to read the header from.</param>
32
- /// <returns><see langword="true"/> if a match is found; otherwise, <see langword="false "/></returns>
32
+ /// <returns>The <see cref="IImageFormat "/>. </returns>
33
33
/// <exception cref="ArgumentNullException">The options are null.</exception>
34
34
/// <exception cref="ArgumentNullException">The stream is null.</exception>
35
35
/// <exception cref="NotSupportedException">The stream is not readable or the image format is not supported.</exception>
@@ -79,7 +79,7 @@ public static Task<IImageFormat> DetectFormatAsync(
79
79
/// Reads the raw image information from the specified stream without fully decoding it.
80
80
/// </summary>
81
81
/// <param name="stream">The image stream to read the header from.</param>
82
- /// <returns><see langword="true"/> if the information can be read; otherwise, <see langword="false "/></returns>
82
+ /// <returns>The <see cref="ImageInfo "/>. </returns>
83
83
/// <exception cref="ArgumentNullException">The stream is null.</exception>
84
84
/// <exception cref="NotSupportedException">The stream is not readable or the image format is not supported.</exception>
85
85
/// <exception cref="InvalidImageContentException">The encoded image contains invalid content.</exception>
You can’t perform that action at this time.
0 commit comments