The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
UsbBulkInPipe.InputStream | inputStream property
Input stream that stores the data that the bulk IN pipe received from the endpoint.
Syntax
var inputStream = usbBulkInPipe.inputStream;
Property value
Type: IInputStream
Input stream that contains data read from the endpoint.
Remarks
To access data read from a bulk IN pipe, get the input stream from the pipe, and then use the DataReader to read data.
auto stream = DeviceList::Current->Fx2Device->Configuration->UsbInterfaces->GetAt(0)->BulkInPipes->GetAt(0)->InputStream;
Windows::Storage::Streams::DataReader^ reader = ref new Windows::Storage::Streams::DataReader(stream);
Concurrency::create_task(reader->LoadAsync(TRANSFER_SIZE))
.then ([this, reader] (uint32 result)
{
//Your code.
});
Requirements
|
Minimum supported client | Windows 8.1 |
|---|---|
|
Minimum supported server | Windows Server 2012 R2 |
|
Namespace |
|
|
Metadata |
|
See also
Show:
