Wed, 04/13/2016 - 04:07
#1
Device feature in SDK 3.7
In SDK 2.8, I might get device features, used next code:
private IDevice _device;
foreach (var feature in Enum.GetValues(typeof(FeatureType)))
{
var featureName = feature.ToString();
var isUse = this._device.HostCommand.IsSupported((FeatureType)feature);
}
How can I get them into 3.7?
Sorry for my bad English.
Add new comment