mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 08:52:50 +08:00
53 lines
1.3 KiB
C#
53 lines
1.3 KiB
C#
namespace Spectre.Console;
|
|
|
|
/// <summary>
|
|
/// Represents (read-only) console capabilities.
|
|
/// </summary>
|
|
public interface IReadOnlyCapabilities
|
|
{
|
|
/// <summary>
|
|
/// Gets the color system.
|
|
/// </summary>
|
|
ColorSystem ColorSystem { get; }
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether or not
|
|
/// the console supports VT/ANSI control codes.
|
|
/// </summary>
|
|
bool Ansi { get; }
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether or not
|
|
/// the console support links.
|
|
/// </summary>
|
|
bool Links { get; }
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether or not
|
|
/// this is a legacy console (cmd.exe) on an OS
|
|
/// prior to Windows 10.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Only relevant when running on Microsoft Windows.
|
|
/// </remarks>
|
|
bool Legacy { get; }
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether or not
|
|
/// console output has been redirected.
|
|
/// </summary>
|
|
[Obsolete("Use Profile.Out.IsTerminal instead")]
|
|
bool IsTerminal { get; }
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether
|
|
/// or not the console supports interaction.
|
|
/// </summary>
|
|
bool Interactive { get; }
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether
|
|
/// or not the console supports Unicode.
|
|
/// </summary>
|
|
bool Unicode { get; }
|
|
} |