Table of Contents

Class EscapeOutRangeEncoding

Namespace
Yarhl.Media.Text.Encodings
Assembly
Yarhl.Media.Text.dll

Provides an encoding for encode and decode symbols out of range of any encoding.

public class EscapeOutRangeEncoding : Encoding, ICloneable
Inheritance
EscapeOutRangeEncoding
Implements
Inherited Members

Constructors

EscapeOutRangeEncoding(string)

Initializes a new instance of the EscapeOutRangeEncoding class.

public EscapeOutRangeEncoding(string baseEncodingName)

Parameters

baseEncodingName string

Base encoding name.

EscapeOutRangeEncoding(Encoding)

Initializes a new instance of the EscapeOutRangeEncoding class.

public EscapeOutRangeEncoding(Encoding encoding)

Parameters

encoding Encoding

Base encoding.

Remarks

For correct usage, make sure that your encoding uses the EscapeOutRangeEncoding.EscapeOutRangeDecoderFallback as the decoder fallback.

Properties

TokenEnd

Gets the end of the token for invalid symbols.

public static string TokenEnd { get; }

Property Value

string

The token end.

TokenStart

Gets the start of the token for invalid symbols.

public static string TokenStart { get; }

Property Value

string

The token start.

Methods

GetByteCount(char[], int, int)

Gets the byte count.

public override int GetByteCount(char[] chars, int index, int count)

Parameters

chars char[]

Chars to convert.

index int

Index of the char array.

count int

Count in the char array.

Returns

int

The byte count.

GetBytes(char[], int, int, byte[], int)

Gets the encoded bytes.

public override int GetBytes(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex)

Parameters

chars char[]

Chars to convert.

charIndex int

Index in the char array.

charCount int

Number of chars to convert.

bytes byte[]

Output byte array.

byteIndex int

Index in the byte array.

Returns

int

The encoded bytes.

GetCharCount(byte[], int, int)

Gets the char count.

public override int GetCharCount(byte[] bytes, int index, int count)

Parameters

bytes byte[]

Bytes to convert.

index int

Index of the byte array.

count int

Count of the byte array.

Returns

int

The char count.

GetChars(byte[], int, int, char[], int)

Gets the decoded chars.

public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)

Parameters

bytes byte[]

Encoded bytes.

byteIndex int

Index in the encoded bytes.

byteCount int

Number of bytes to decoded.

chars char[]

Output char array.

charIndex int

Index in the char array.

Returns

int

The decoded chars.

GetMaxByteCount(int)

Gets the max byte count.

public override int GetMaxByteCount(int charCount)

Parameters

charCount int

Char count.

Returns

int

The max byte count.

GetMaxCharCount(int)

Gets the max char count.

public override int GetMaxCharCount(int byteCount)

Parameters

byteCount int

Byte count.

Returns

int

The max char count.