Encoding::GetDecoder Method
When overridden in a derived class, obtains a decoder that converts an encoded sequence of bytes into a sequence of characters.
Assembly: mscorlib (in mscorlib.dll)
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 ImplementersThe 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.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.