Class FeatureListHelper
Inheritance
FeatureListHelper
Assembly: CAMIPC.DotnetHelper.dll
Syntax
public static class FeatureListHelper
Methods
Count(ComWrapper<ICamIpcFeatureList>)
Number of features in the list
Declaration
public static int Count(this ComWrapper<ICamIpcFeatureList> listCom)
Parameters
Returns
Enumerate(ComWrapper<ICamIpcFeatureList>)
Iterates over all features in the list.
Each ComWrapper<T> must be disposed by the caller.
Declaration
public static IEnumerable<ComWrapper<ICamIpcFeature>> Enumerate(this ComWrapper<ICamIpcFeatureList> listCom)
Parameters
Returns
GetFeature(ComWrapper<ICamIpcFeatureList>, int)
Feature by index (0..Count-1)
Declaration
public static ComWrapper<ICamIpcFeature> GetFeature(this ComWrapper<ICamIpcFeatureList> listCom, int index)
Parameters
Returns