SerializationHelperConvertUTF Method |
Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Convert binary UTF-8 encode data to a String. This method is a helper
to allow various I/O implementations to share a single, efficient
implementation.
Namespace:
Tangosol.Util
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntaxpublic static string ConvertUTF(
byte[] ab,
int of,
int cb
)
Parameters
- ab
- Type: SystemByte
an array of bytes containing UTF-8 encoded characters
- of
- Type: SystemInt32
the offset into the array of the UTF-8 data to decode
- cb
- Type: SystemInt32
the binary length in the array of the UTF-8 data to decode
Return Value
Type:
String[Missing <returns> documentation for "M:Tangosol.Util.SerializationHelper.ConvertUTF(System.Byte[],System.Int32,System.Int32)"]
ExceptionsException | Condition |
---|
IOException |
throws ArgumentException if the UTF data is corrupt
|
See Also