'Declaration
Sub SetByteArrayValue( _ ByVal byteArray As Object, _ ByVal sizeInBits As Integer _ )
'Usage
Dim instance As _OpaqueData Dim byteArray As Object Dim sizeInBits As Integer instance.SetByteArrayValue(byteArray, sizeInBits)
void SetByteArrayValue( object byteArray, int sizeInBits )
void SetByteArrayValue( Object^ byteArray, int sizeInBits )
Parameters
- byteArray
- The value expressed as array of bytes.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - sizeInBits
- Size in bits of the resulting value.
Valid values of this parameter are in the range from
0
to2147483647 (Int32.MaxValue)
.