Samraksh eMote .NOW
Read Method (SD)



Array to receive data
Offset into array
Amount to read
Read from SD
Syntax
'Declaration
 
Public Shared Function Read( _
   ByVal dataArray() As Byte, _
   ByVal offset As UShort, _
   ByVal length As UShort _
) As Boolean
'Usage
 
Dim dataArray() As Byte
Dim offset As UShort
Dim length As UShort
Dim value As Boolean
 
value = SD.Read(dataArray, offset, length)
public static bool Read( 
   byte[] dataArray,
   ushort offset,
   ushort length
)
public:
static bool Read( 
   array<byte>^ dataArray,
   ushort offset,
   ushort length
) 

Parameters

dataArray
Array to receive data
offset
Offset into array
length
Amount to read

Return Value

True iff success
Requirements

Target Platforms: eMote .NOW

See Also

Reference

SD Class
SD Members

Send Feedback