LINK_SAP_CS_80211.Common.Parameters.PeriodicParameters.HandlePeriodicParameterConfig C# (CSharp) 메소드

HandlePeriodicParameterConfig() 공개 메소드

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

Usage 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);
         }
     }
 }