Skip to content

Commit

Permalink
Move GetMatching_ methods to beta
Browse files Browse the repository at this point in the history
  • Loading branch information
jldubz committed Dec 13, 2019
1 parent fffaee9 commit 9d0a828
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion IHsController.cs
Expand Up @@ -216,7 +216,9 @@ public interface IHsController {
/// A list of <see cref="HsDevice"/>s managed by the HomeSeer system with or without associated features linked.
/// </returns>
List<HsDevice> GetAllDevices(bool withFeatures);


#if BETA

/// <summary>
/// Get a list of all of the device refs present in the HomeSeer system that match the specified pattern
/// </summary>
Expand Down Expand Up @@ -248,6 +250,8 @@ public interface IHsController {
/// A list of <see cref="HsDevice"/>s managed by the HomeSeer system that match the specified pattern.
/// </returns>
List<HsDevice> GetAllMatchingDevices(Dictionary<EProperty, object> matchPattern, bool withFeatures);

#endif

//Features
HsFeature GetFeatureByRef(int featRef);
Expand All @@ -264,6 +268,8 @@ public interface IHsController {
/// <returns>A list of integers corresponding to the feature refs managed by the HomeSeer system</returns>
List<int> GetAllFeatureRefs();

#if BETA

/// <summary>
/// Get a list of all of the feature refs present in the HomeSeer system that match the specified pattern
/// </summary>
Expand All @@ -290,6 +296,8 @@ public interface IHsController {
/// <returns>A list of features managed by the HomeSeer system that match the specified pattern.</returns>
List<HsFeature> GetAllMatchingFeatures(Dictionary<EProperty, object> matchPattern);

#endif

StatusControl GetStatusControlForValue(int featRef, double value);
StatusControl GetStatusControlForLabel(int featRef, string label);
List<StatusControl> GetStatusControlsForRange(int featRef, double min, double max);
Expand Down

0 comments on commit 9d0a828

Please sign in to comment.