Table of Contents

Class TerminalTextHandler

Namespace
OneImlx.Terminal.Runtime
Assembly
OneImlx.Terminal.dll

The default ITerminalTextHandler.

public sealed class TerminalTextHandler : ITerminalTextHandler
Inheritance
TerminalTextHandler
Implements
Inherited Members

Constructors

TerminalTextHandler(StringComparison, Encoding)

Initializes a new instance of the TerminalTextHandler class with specified comparison and encoding.

public TerminalTextHandler(StringComparison comparison, Encoding encoding)

Parameters

comparison StringComparison

The string comparison to use.

encoding Encoding

The text encoding to use.

Properties

Comparison

The string comparison.

public StringComparison Comparison { get; }

Property Value

StringComparison

Encoding

The text encoding.

public Encoding Encoding { get; }

Property Value

Encoding

Methods

CharEquals(char?, char?)

Determines whether the two characters are equal using Comparison.

public bool CharEquals(char? ch1, char? ch2)

Parameters

ch1 char?

The first char to compare.

ch2 char?

The second char to compare.

Returns

bool

true if the characters are equal, false otherwise.

EqualityComparer()

Returns the InvariantCultureIgnoreCase equality comparer.

public IEqualityComparer<string> EqualityComparer()

Returns

IEqualityComparer<string>

SingleEquals(char?, string?)

Determines whether a characters and text are equal using Comparison.

public bool SingleEquals(char? ch1, string? s2)

Parameters

ch1 char?

The first char to compare.

s2 string

The second text to compare.

Returns

bool

true if the texts are equal, false otherwise.

TextEquals(string?, string?)

Determines whether the two ASCII texts are equal using Comparison.

public bool TextEquals(string? s1, string? s2)

Parameters

s1 string

The first text to compare.

s2 string

The second text to compare.

Returns

bool

true if the texts are equal, false otherwise.

TextLength(string?)

Returns the ASCII text length.

public int TextLength(string? s1)

Parameters

s1 string

Returns

int