Table of Contents

Interface ITerminalTextHandler

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

An abstraction of a terminal text handler.

public interface ITerminalTextHandler

Properties

Comparison

Gets the StringComparison value to compare the two strings.

StringComparison Comparison { get; }

Property Value

StringComparison

Encoding

Gets the text Encoding.

Encoding Encoding { get; }

Property Value

Encoding

Methods

CharEquals(char?, char?)

Determines whether the two characters are equal using Comparison.

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 equality comparer.

IEqualityComparer<string> EqualityComparer()

Returns

IEqualityComparer<string>

SingleEquals(char?, string?)

Determines whether a characters and text are equal using Comparison.

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 texts are equal using Comparison.

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 text length.

int TextLength(string? s1)

Parameters

s1 string

Returns

int