System.Text.Decoder: Method Members

The methods of System.Text.Decoder are listed below. For a list of all members, see the Decoder Members list.

See Also: Inherited members from System.Object

Public Methods

Convert(byte[], int, int, char[], int, int, bool, out int, out int, out bool)
Documentation for this section has not yet been entered.
Convert(byte*, int, char*, int, bool, out int, out int, out bool)
Documentation for this section has not yet been entered.
GetCharCount(byte*, int, bool) : int

When overridden in a derived class, calculates the number of characters produced by decoding a sequence of bytes starting at the specified byte pointer. A parameter indicates whether to clear the internal state of the decoder after the calculation.

abstract
GetCharCount(byte[], int, int) : int

When overridden in a derived class, calculates the number of characters produced by decoding a sequence of bytes from the specified byte array.

GetCharCount(byte[], int, int, bool) : int

When overridden in a derived class, calculates the number of characters produced by decoding a sequence of bytes from the specified byte array. A parameter indicates whether to clear the internal state of the decoder after the calculation.

GetChars(byte*, int, char*, int, bool) : int

When overridden in a derived class, decodes a sequence of bytes starting at the specified byte pointer and any bytes in the internal buffer into a set of characters that are stored starting at the specified character pointer. A parameter indicates whether to clear the internal state of the decoder after the conversion.

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

When overridden in a derived class, decodes a sequence of bytes from the specified byte array and any bytes in the internal buffer into the specified character array.

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

When overridden in a derived class, decodes a sequence of bytes from the specified byte array and any bytes in the internal buffer into the specified character array. A parameter indicates whether to clear the internal state of the decoder after the conversion.

Reset()

When overridden in a derived class, sets the decoder back to its initial state.