TcpGpsReceiverSendByteArray Method |
Sends a byte array to the GPS receiver.
It works only if you have a RemoteHost defined.
Namespace: ZylSoft.GpsAssembly: ZylGpsReceiver (in ZylGpsReceiver.dll) Version: 3.29.9208.19412
XMLNS for XAML: Not mapped to an xmlns.
Syntaxpublic int SendByteArray(
byte[] byteArray
)
Public Function SendByteArray (
byteArray As Byte()
) As Integer
Dim instance As TcpGpsReceiver
Dim byteArray As Byte()
Dim returnValue As Integer
returnValue = instance.SendByteArray(byteArray)
public:
int SendByteArray(
array<unsigned char>^ byteArray
)
member SendByteArray :
byteArray : byte[] -> int
public int SendByteArray(
byte[] byteArray
)
public function SendByteArray(
byteArray : byte[]
) : int
function SendByteArray(byteArray);
METHOD SendByteArray(
byteArray AS BYTE[]
) AS LONG
No code example is currently available or this language may not be supported.
Parameters
- byteArray Byte
-
The byte array to be sent.
Return Value
Int32
The count of sent bytes.
See Also