Encoding: GetEncoder

GetEncoder

When implemented in a derived class, obtains an encoder that converts a sequence of Unicode characters into an encoded sequence of bytes.



 Public Function GetEncoder ( ) As Encoder

Return Values

Encoder -  A Encoder that converts a sequence of Unicode characters into an encoded sequence of bytes.

Remarks

The Encoder.GetBytes method converts sequential blocks of characters into sequential blocks of bytes, in a manner similar to the GetBytes method of this class. However, an Encoder maintains state information between calls so it correctly encodes character sequences that span blocks. The Encoder also preserves trailing characters at the end of data blocks and uses the trailing characters in the next encoding operation. For example, a data block might end with an unmatched high surrogate, and the matching low surrogate might be in the next data block. Therefore, GetDecoder and GetEncoder are useful for network transmission and file operations, because those operations often deal with blocks of data instead of a complete data stream.

See Also

Project CorLib Overview

Class Encoding Overview

Encoder

GetBytes

GetByteCount

GetDecoder