LINK_SAP_CS_80211.Common.Parameters.PeriodicParameters.HandlePeriodicParameterConfig C# (CSharp) Method

HandlePeriodicParameterConfig() public method

public HandlePeriodicParameterConfig ( MIH.DataTypes.Link_Cfg_Param linkCfgParam ) : void
linkCfgParam MIH.DataTypes.Link_Cfg_Param
return void
        public void HandlePeriodicParameterConfig(Link_Cfg_Param linkCfgParam)
        {
            throw new System.NotImplementedException();
        }

Usage Example

Example #1
0
 public void linkConfigureThresholds(List <Link_Cfg_Param> thresholdsToConfigure)
 {
     foreach (Link_Cfg_Param lcp in thresholdsToConfigure)
     {
         if (lcp.Timer_Interval == 0)
         {
             oneShotParameters.HandleOneShotParamConf(lcp);
         }
         else
         {
             periodicParameters.HandlePeriodicParameterConfig(lcp);
         }
     }
 }