ISpiDeviceProvider.TransferSequential(Byte[], Byte[]) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
按顺序将数据传输到设备。
public:
void TransferSequential(Platform::Array <byte> ^ writeBuffer, Platform::Array <byte> ^ readBuffer);
void TransferSequential(winrt::array_view <byte> const& writeBuffer, winrt::array_view <byte> & readBuffer);
public void TransferSequential(byte[] writeBuffer, byte[] readBuffer);
function transferSequential(writeBuffer, readBuffer)
Public Sub TransferSequential (writeBuffer As Byte(), readBuffer As Byte())
参数
- writeBuffer
-
Byte[]
byte[]
包含要写入设备的数据的数组。
- readBuffer
-
Byte[]
byte[]
包含从设备读取的数据的数组。