Table of Contents

Class USBInTransferResult

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll
NOTE
Experimental
The USBInTransferResult interface of the WebUSB API provides the result from a call to the transferIn() and controlTransferIn() methods of the USBDevice interface. It represents the result from requesting a transfer of data from the USB device to the USB host.
[Value("USBInTransferResult")]
public class USBInTransferResult
Inheritance
USBInTransferResult
Inherited Members

Remarks

Constructors

USBInTransferResult()

public USBInTransferResult()

USBInTransferResult(USBTransferStatus, DataView?)

public USBInTransferResult(USBTransferStatus status, DataView? data = null)

Parameters

status USBTransferStatus
data DataView

Properties

Data

[Value("data")]
public DataView? Data { get; }

Property Value

DataView

Status

[Value("status")]
public USBTransferStatus Status { get; }

Property Value

USBTransferStatus