Click or drag to resize

InputStateDevices Property

[This is preliminary documentation and is subject to change.]

The list of currently active devices. Subscribe to the DeviceStateChanged event to be notified when this list changes.

Namespace:  RavingBots.MultiInput
Assembly:  RavingBots.MultiInput (in RavingBots.MultiInput.dll) Version: 0.12
Syntax
C#
public IEnumerable<IDevice> Devices { get; }

Property Value

Type: IEnumerableIDevice
An IEnumerableT of all known devices. It's not backed by a collection: you need to drain the elements with ToListTSource(IEnumerableTSource) or similar if you want to iterate over it more than once.
See Also