Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 1 KB

usbbulkinpipe_inputstream.md

File metadata and controls

41 lines (25 loc) · 1 KB
-api-id -api-type
P:Windows.Devices.Usb.UsbBulkInPipe.InputStream
winrt property

Windows.Devices.Usb.UsbBulkInPipe.InputStream

-description

Input stream that stores the data that the bulk IN pipe received from the endpoint.

-property-value

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.  
  
  
    });

-examples

-see-also