Artemis.DeviceProviders.DeviceProvider.TryEnableAsync C# (CSharp) Method

TryEnableAsync() public method

Tries to enable the device and updates CanUse accordingly asynchronously
public TryEnableAsync ( ) : Task
return Task
        public Task<bool> TryEnableAsync()
        {
            return Task.Run(() => TryEnable());
        }
    }