Class UsbManager

Definition

Namespace:
Tizen.System.Usb
Assembly:
Tizen.System.Usb.dll
API Level:
4

The USB Manager class.

C#
Copy
public class UsbManager : IDisposable
Inheritance
UsbManager

Constructors

View Source

UsbManager()

The USB Manager constructor.

Declaration
C#
Copy
public UsbManager()
API Level: 4
Feature: http://tizen.org/feature/usb.host

Properties

View Source

AvailableDevices

This function returns a list of USB devices attached to the system.

Declaration
C#
Copy
public IEnumerable<UsbDevice> AvailableDevices { get; }
Property Value
Type Description
IEnumerable<UsbDevice>
API Level: 4
Feature: http://tizen.org/feature/usb.host

Methods

View Source

Dispose()

Declaration
C#
Copy
public void Dispose()
API Level: 4
View Source

Finalize()

Finalizes an instance of the USB Manager Class.

Declaration
C#
Copy
protected void Finalize()
API Level: 4

Events

View Source

DeviceHotPlugged

An event handler for events when the USB device is attached or detached.

Declaration
C#
Copy
public event EventHandler<HotPluggedEventArgs> DeviceHotPlugged
Event Type
Type Description
EventHandler<HotPluggedEventArgs>
API Level: 4
Feature: http://tizen.org/feature/usb.host

Extension Methods