浏览代码

Update xmldoc

tznind 10 月之前
父节点
当前提交
a8e3a0ec2b
共有 1 个文件被更改,包括 8 次插入1 次删除
  1. 8 1
      Terminal.Gui/Drawing/SixelSupportDetector.cs

+ 8 - 1
Terminal.Gui/Drawing/SixelSupportDetector.cs

@@ -4,11 +4,18 @@ using Microsoft.CodeAnalysis;
 namespace Terminal.Gui;
 
 /// <summary>
-///     Uses ANSII escape sequences to detect whether sixel is supported
+///     Uses Ansi escape sequences to detect whether sixel is supported
 ///     by the terminal.
 /// </summary>
 public class SixelSupportDetector
 {
+    /// <summary>
+    /// Sends Ansi escape sequences to the console to determine whether
+    /// sixel is supported (and <see cref="SixelSupportResult.Resolution"/>
+    /// etc).
+    /// </summary>
+    /// <returns>Description of sixel support, may include assumptions where
+    /// expected response codes are not returned by console.</returns>
     public SixelSupportResult Detect ()
     {
         var result = new SixelSupportResult ();