Encoding.GetDecoder Method
Microsoft Silverlight will reach end of support after October 2021. Learn more.
When overridden in a derived class, obtains a decoder that converts an encoded sequence of bytes into a sequence of characters.
Namespace: System.Text
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Overridable Function GetDecoder As Decoder
public virtual Decoder GetDecoder()
Return Value
Type: System.Text.Decoder
A Decoder that converts an encoded sequence of bytes into a sequence of 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 correctly decodes 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.
Notes to Implementers
The default implementation returns a Decoder that calls the GetCharCount and GetChars methods of the current Encoding. Your application must override this method to return a Decoder that maintains its state between calls.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also