Decoder.GetChars Method (Byte(), Int32, Int32, Char(), Int32, Boolean)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
When overridden in a derived class, decodes a sequence of bytes from the specified byte array and any bytes in the internal buffer into the specified character array. A parameter indicates whether to clear the internal state of the decoder after the conversion.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Overridable Function GetChars ( _ bytes As Byte(), _ byteIndex As Integer, _ byteCount As Integer, _ chars As Char(), _ charIndex As Integer, _ flush As Boolean _ ) As Integer
Parameters
- bytes
- Type:
System.Byte
()
The byte array containing the sequence of bytes to decode.
- byteIndex
- Type: System.Int32
The zero-based index of the first byte to decode.
- byteCount
- Type: System.Int32
The number of bytes to decode.
- chars
- Type:
System.Char
()
The character array to contain the resulting set of characters.
- charIndex
- Type: System.Int32
The zero-based index at which to start writing the resulting set of characters.
- flush
- Type: System.Boolean
true to clear the internal state of the decoder after the conversion; otherwise, false.
| Exception | Condition |
|---|---|
| ArgumentNullException | bytes is Nothing. -or- chars is Nothing. |
| ArgumentOutOfRangeException | byteIndex or byteCount or charIndex is less than zero. -or- byteindex and byteCount do not denote a valid range in bytes. -or- charIndex is not a valid index in chars. |
| ArgumentException | chars does not have enough capacity from charIndex to the end of the array to accommodate the resulting characters. |
| DecoderFallbackException | A fallback occurred. |
The Decoder object saves state between calls to GetChars. When the application is done with a stream of data, it should set the flush parameter to true to make sure that the state information is flushed. With this setting, the decoder ignores invalid bytes at the end of the data block and clears the internal buffer.
To calculate the exact array size that GetChars requires to store the decoded characters, call the GetCharCount method.
If GetChars is called with flush set to false, the decoder stores trailing bytes at the end of the data block in an internal buffer and uses them in the next decoding operation. The application should call GetCharCount on a block of data immediately before calling GetChars on the same block, so that any trailing bytes from the previous block are included in the calculation.