Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the current element from the enumeration of the CaptureDevicesCollection object.
Definition
Visual Basic Overrides Public ReadOnly Property Current As Object C# public override object Current { get; } C++ public:
property virtual Object^ Current override {
Object^ get();
}JScript public function get Current() : Object
Property Value
System.Object
The current element from the enumeration of the CaptureDevicesCollection object.This property is read-only.
Remarks
Since this method has a return value type of Object
, you must cast it into a DeviceInformation structure to access its properties and method. See the example below:
[C#]CaptureDevicesCollection devices = new CaptureDevicesCollection(); while (devices.MoveNext()) { DeviceInformation di = (DeviceInformation)devices.Current; }
.gif)