Share via


UsbBulkInPipe.InputStream Property

Definition

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

public:
 property IInputStream ^ InputStream { IInputStream ^ get(); };
IInputStream InputStream();
public IInputStream InputStream { get; }
var iInputStream = usbBulkInPipe.inputStream;
Public ReadOnly Property InputStream As IInputStream

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.  


  });

Applies to