Class USBIsochronousInTransferResult
- Namespace
- CSharpToJavaScript.APIs.JS
- Assembly
- CSharpToJavaScript.dll
NOTE
Experimental The
USBIsochronousInTransferResult interface of the
WebUSB API provides the result from a call to the
isochronousTransferIn() method of the
USBDevice interface. It represents the result from requesting a transfer of data from the USB device to the USB host.
[Value("USBIsochronousInTransferResult")]
public class USBIsochronousInTransferResult
- Inheritance
-
USBIsochronousInTransferResult
- Inherited Members
-
Constructors
USBIsochronousInTransferResult()
public USBIsochronousInTransferResult()
USBIsochronousInTransferResult(List<USBIsochronousInTransferPacket>, DataView?)
public USBIsochronousInTransferResult(List<USBIsochronousInTransferPacket> packets, DataView? data = null)
Parameters
packets List<USBIsochronousInTransferPacket>
data DataView
Properties
Data
[Value("data")]
public DataView? Data { get; }
Property Value
- DataView
Packets
[Value("packets")]
public USBIsochronousInTransferPacket[] Packets { get; }
Property Value
- USBIsochronousInTransferPacket[]