From ffe6261122e638ec776c866a3182b76827f78564 Mon Sep 17 00:00:00 2001 From: dahall Date: Wed, 2 Mar 2022 07:32:42 -0700 Subject: [PATCH] Fixed documentation --- System/Computer/DeviceManager.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/System/Computer/DeviceManager.cs b/System/Computer/DeviceManager.cs index 705770e9..cebceb5f 100644 --- a/System/Computer/DeviceManager.cs +++ b/System/Computer/DeviceManager.cs @@ -920,6 +920,10 @@ namespace Vanara.Diagnostics public string MachineName { get; } /// Gets the devices associated with this machine. + /// + /// Specifies control options that filter the device information elements that are added to the device information set. This + /// property can be a bitwise OR of one or more of the flags. + /// /// A sequence of instances on this machine. public IEnumerable GetDevices(DIGCF filter = DIGCF.DIGCF_PRESENT) => new DeviceCollection(null, null, MachineName, filter);