SerializationHelperConvertUTF Method |
.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
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.1 (14.1.1.1)
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