Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Obtains a decoder that converts a UTF-8 encoded sequence of bytes into a sequence of Unicode characters.
Namespace: System.Text
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Overrides Function GetDecoder As Decoder
public override Decoder GetDecoder()
public:
virtual Decoder^ GetDecoder() override
abstract GetDecoder : unit -> Decoder
override GetDecoder : unit -> Decoder
public override function GetDecoder() : Decoder
Return Value
Type: System.Text. . :: . .Decoder
A Decoder that converts a UTF-8 encoded sequence of bytes into a sequence of Unicode characters.
Remarks
The Decoder.GetChars method converts sequential blocks of bytes into sequential blocks of characters, in a manner similar to the GetChars method of this class. However, a Decoder maintains state information between calls so it can correctly decode byte sequences that span blocks. The Decoder also preserves trailing bytes at the end of data blocks and uses the trailing bytes in the next decoding operation. 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.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.