 | IPortableWriter.WriteByteArray Method |
Writes a primitive byte-array.
Namespace:
Hazelcast.IO.Serialization
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.2
Syntaxvoid WriteByteArray(
string fieldName,
byte[] bytes
)
Sub WriteByteArray (
fieldName As String,
bytes As Byte()
)
void WriteByteArray(
String^ fieldName,
array<unsigned char>^ bytes
)
abstract WriteByteArray :
fieldName : string *
bytes : byte[] -> unit
Parameters
- fieldName
- Type: System.String
name of the field - bytes
- Type:System.Byte[]
byte array to be written
ExceptionsException | Condition |
---|
IOException | System.IO.IOException |
RemarksWrites a primitive byte-array.
See Also