Encoding::Convert Method (Encoding, Encoding, array<Byte>)
Silverlight
Converts an entire byte array from one encoding to another.
Namespace: System.Text
Assembly: mscorlib (in mscorlib.dll)
Parameters
- srcEncoding
- Type: System.Text::Encoding
The encoding format of bytes.
- dstEncoding
- Type: System.Text::Encoding
The target encoding format.
- bytes
- Type: array<System::Byte>
The bytes to convert.
Return Value
Type: array<System::Byte>A byte array that contains the results of converting bytes from srcEncoding to dstEncoding.
| Exception | Condition |
|---|---|
| ArgumentNullException | srcEncoding is nullptr. -or- dstEncoding is nullptr. -or- bytes is nullptr. |
| DecoderFallbackException | A fallback occurred (see Understanding Encodings for complete explanation). |
| EncoderFallbackException | A fallback occurred (see Understanding Encodings for complete explanation). |
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Community Additions
ADD
Show: