Search Results for

    Class TextWriterRaw

    Raw text writers for console

    Inheritance
    object
    TextWriterRaw
    Namespace
    Terminaux.Writer.ConsoleWriters @ Terminaux.dll
    Syntax
    public static class TextWriterRaw


    Methods

    Write()

    Outputs the new line into the terminal prompt.

    Declaration
    public static void Write()

    WriteError()

    Outputs the new line into the terminal prompt (stderr).

    Declaration
    public static void WriteError()

    WriteErrorPlain(string, bool, bool, params object[])

    Outputs the text into the terminal prompt (stderr) plainly.

    Declaration
    public static void WriteErrorPlain(string Text, bool Line, bool useColors, params object[] vars)
    Parameters
    Name Type Description
    Text string

    A sentence that will be written to the terminal prompt. Supports {0}, {1}, ...

    Line bool

    Whether to print a new line or not

    useColors bool

    Whether to use colors or not

    vars object[]

    Variables to format the message before it's written.

    WriteErrorPlain(string, bool, params object[])

    Outputs the text into the terminal prompt (stderr) plainly.

    Declaration
    public static void WriteErrorPlain(string Text, bool Line, params object[] vars)
    Parameters
    Name Type Description
    Text string

    A sentence that will be written to the terminal prompt. Supports {0}, {1}, ...

    Line bool

    Whether to print a new line or not

    vars object[]

    Variables to format the message before it's written.

    WriteErrorPlain(string, params object[])

    Outputs the text into the terminal prompt (stderr) plainly with a newline terminator.

    Declaration
    public static void WriteErrorPlain(string Text, params object[] vars)
    Parameters
    Name Type Description
    Text string

    A sentence that will be written to the terminal prompt. Supports {0}, {1}, ...

    vars object[]

    Variables to format the message before it's written.

    WriteErrorPlainColor(string, bool, params object[])

    Outputs the text into the terminal prompt (stderr) plainly with color support.

    Declaration
    public static void WriteErrorPlainColor(string Text, bool Line, params object[] vars)
    Parameters
    Name Type Description
    Text string

    A sentence that will be written to the terminal prompt. Supports {0}, {1}, ...

    Line bool

    Whether to print a new line or not

    vars object[]

    Variables to format the message before it's written.

    WriteErrorPlainColor(string, params object[])

    Outputs the text into the terminal prompt (stderr) plainly with a newline terminator and color support.

    Declaration
    public static void WriteErrorPlainColor(string Text, params object[] vars)
    Parameters
    Name Type Description
    Text string

    A sentence that will be written to the terminal prompt. Supports {0}, {1}, ...

    vars object[]

    Variables to format the message before it's written.

    WriteErrorRaw(string, params object[])

    Outputs the text into the terminal prompt (stderr) plainly.

    Declaration
    public static void WriteErrorRaw(string Text, params object[] vars)
    Parameters
    Name Type Description
    Text string

    A sentence that will be written to the terminal prompt. Supports {0}, {1}, ...

    vars object[]

    Variables to format the message before it's written.

    WritePlain(string, bool, bool, params object[])

    Outputs the text into the terminal prompt plainly.

    Declaration
    public static void WritePlain(string Text, bool Line, bool useColors, params object[] vars)
    Parameters
    Name Type Description
    Text string

    A sentence that will be written to the terminal prompt. Supports {0}, {1}, ...

    Line bool

    Whether to print a new line or not

    useColors bool

    Whether to use colors or not

    vars object[]

    Variables to format the message before it's written.

    WritePlain(string, bool, params object[])

    Outputs the text into the terminal prompt plainly.

    Declaration
    public static void WritePlain(string Text, bool Line, params object[] vars)
    Parameters
    Name Type Description
    Text string

    A sentence that will be written to the terminal prompt. Supports {0}, {1}, ...

    Line bool

    Whether to print a new line or not

    vars object[]

    Variables to format the message before it's written.

    WritePlain(string, params object[])

    Outputs the text into the terminal prompt plainly with a newline terminator.

    Declaration
    public static void WritePlain(string Text, params object[] vars)
    Parameters
    Name Type Description
    Text string

    A sentence that will be written to the terminal prompt. Supports {0}, {1}, ...

    vars object[]

    Variables to format the message before it's written.

    WritePlain(string, TermReaderSettings?, bool, bool, params object[])

    Outputs the text into the terminal prompt plainly. Use for TermReader custom bindings.

    Declaration
    public static void WritePlain(string Text, TermReaderSettings? settings, bool Line, bool useColors, params object[] vars)
    Parameters
    Name Type Description
    Text string

    A sentence that will be written to the terminal prompt. Supports {0}, {1}, ...

    settings TermReaderSettings

    Terminal reader settings

    Line bool

    Whether to print a new line or not

    useColors bool

    Whether to use colors or not

    vars object[]

    Variables to format the message before it's written.

    WritePlain(string, TermReaderSettings?, bool, params object[])

    Outputs the text into the terminal prompt plainly. Use for TermReader custom bindings.

    Declaration
    public static void WritePlain(string Text, TermReaderSettings? settings, bool Line, params object[] vars)
    Parameters
    Name Type Description
    Text string

    A sentence that will be written to the terminal prompt. Supports {0}, {1}, ...

    settings TermReaderSettings

    Terminal reader settings

    Line bool

    Whether to print a new line or not

    vars object[]

    Variables to format the message before it's written.

    WritePlain(string, TermReaderSettings?, params object[])

    Outputs the text into the terminal prompt plainly with a newline terminator. Use for TermReader custom bindings.

    Declaration
    public static void WritePlain(string Text, TermReaderSettings? settings, params object[] vars)
    Parameters
    Name Type Description
    Text string

    A sentence that will be written to the terminal prompt. Supports {0}, {1}, ...

    settings TermReaderSettings

    Terminal reader settings

    vars object[]

    Variables to format the message before it's written.

    WritePlainColor(string, bool, params object[])

    Outputs the text into the terminal prompt plainly with color support.

    Declaration
    public static void WritePlainColor(string Text, bool Line, params object[] vars)
    Parameters
    Name Type Description
    Text string

    A sentence that will be written to the terminal prompt. Supports {0}, {1}, ...

    Line bool

    Whether to print a new line or not

    vars object[]

    Variables to format the message before it's written.

    WritePlainColor(string, params object[])

    Outputs the text into the terminal prompt plainly with a newline terminator and color support.

    Declaration
    public static void WritePlainColor(string Text, params object[] vars)
    Parameters
    Name Type Description
    Text string

    A sentence that will be written to the terminal prompt. Supports {0}, {1}, ...

    vars object[]

    Variables to format the message before it's written.

    WritePlainColor(string, TermReaderSettings?, bool, params object[])

    Outputs the text into the terminal prompt plainly with color support. Use for TermReader custom bindings.

    Declaration
    public static void WritePlainColor(string Text, TermReaderSettings? settings, bool Line, params object[] vars)
    Parameters
    Name Type Description
    Text string

    A sentence that will be written to the terminal prompt. Supports {0}, {1}, ...

    settings TermReaderSettings

    Terminal reader settings

    Line bool

    Whether to print a new line or not

    vars object[]

    Variables to format the message before it's written.

    WritePlainColor(string, TermReaderSettings?, params object[])

    Outputs the text into the terminal prompt plainly with a newline terminator and color support. Use for TermReader custom bindings.

    Declaration
    public static void WritePlainColor(string Text, TermReaderSettings? settings, params object[] vars)
    Parameters
    Name Type Description
    Text string

    A sentence that will be written to the terminal prompt. Supports {0}, {1}, ...

    settings TermReaderSettings

    Terminal reader settings

    vars object[]

    Variables to format the message before it's written.

    WriteRaw(string, params object[])

    Outputs the text into the terminal prompt plainly.

    Declaration
    public static void WriteRaw(string Text, params object[] vars)
    Parameters
    Name Type Description
    Text string

    A sentence that will be written to the terminal prompt. Supports {0}, {1}, ...

    vars object[]

    Variables to format the message before it's written.

    WriteRaw(string, TermReaderSettings?, params object[])

    Outputs the text into the terminal prompt plainly. Use for TermReader custom bindings.

    Declaration
    public static void WriteRaw(string Text, TermReaderSettings? settings, params object[] vars)
    Parameters
    Name Type Description
    Text string

    A sentence that will be written to the terminal prompt. Supports {0}, {1}, ...

    settings TermReaderSettings

    Terminal reader settings

    vars object[]

    Variables to format the message before it's written.

    Show / Hide Table of Contents

    Table of contents



      About

      Copyright © 2014-2026 Aptivi

      Find us

    •  
    •  
    •  
    •  
    •  
    •  
    • Social media

    •  
    •  
    •  
    •