System.Text.ASCIIEncoding.GetEncoder Method

Obtains an encoder that converts a sequence of Unicode characters into an ASCII encoded sequence of bytes.

Syntax

[System.Runtime.InteropServices.ComVisible(false)]
public override Encoder GetEncoder ()

Returns

An System.Text.Encoder that converts a sequence of Unicode characters into an ASCII encoded sequence of bytes.

Remarks

The Encoder.GetBytes(Char[], int, int, Byte[], int, bool) method converts sequential blocks of characters into sequential blocks of bytes, in a manner similar to the ASCIIEncoding.GetBytes(string, int, int, Byte[], int) method of this class. However, an System.Text.Encoder maintains state information between calls so it can correctly encode character sequences that span blocks. The System.Text.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, ASCIIEncoding.GetDecoder and ASCIIEncoding.GetEncoder are useful for network transmission and file operations, because those operations often deal with blocks of data instead of a complete data stream.

Requirements

Namespace: System.Text
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 2.0.0.0, 4.0.0.0
Since: .NET 2.0