LibUsbDotNet.Main.UsbRegistry.this C# (CSharp) Method

this() public method

Gets a property from the registry. See the DevicePropertyType enumeration for more information.
public this ( DevicePropertyType devicePropertyType ) : object
devicePropertyType DevicePropertyType The name of the property to retrieve.
return object
        public object this[DevicePropertyType devicePropertyType]
        {
            get
            {
                object temp;
                mDeviceProperties.TryGetValue(devicePropertyType.ToString(), out temp);
                return temp;
            }
        }

Same methods

UsbRegistry::this ( SPDRP spdrp ) : object
UsbRegistry::this ( string name ) : object