/// <summary>
        /// The run.
        /// </summary>
        /// <param name="parent">
        /// The parent.
        /// </param>
        /// <param name="device">
        /// The device.
        /// </param>
        /// <returns>
        /// The <see cref="bool"/>.
        /// </returns>
        public bool Run(string parent, string device)
        {
            /*
             * Function not supported by DC
             * Method reports warning message and returns with false
             */

            Logging.Enter(this, MethodBase.GetCurrentMethod().Name);
            Reporting.Info("Function Add Device is not supported by Host Application: DeviceCare");
            return(false);
        }
 /// <summary>
 /// The run.
 /// </summary>
 /// <returns>
 /// The <see cref="bool"/>.
 /// </returns>
 public bool Run()
 {
     Logging.Enter(this, MethodBase.GetCurrentMethod().Name);
     Reporting.Info("Function Create Topology Online is not supported by Host Application: DeviceCare");
     return(false);
 }
 /// <summary>
 /// The run.
 /// </summary>
 /// <param name="communication">
 /// The communication.
 /// </param>
 /// <param name="devices">
 /// The devices.
 /// </param>
 /// <returns>
 /// The <see cref="string"/>.
 /// </returns>
 public bool Run(List <string /*communications*/> communication, List <string /*device*/> devices)
 {
     Logging.Enter(this, MethodBase.GetCurrentMethod().Name);
     Reporting.Info("Function Select Device is not supported by Host Application: DeviceCare");
     return(false);
 }
 /// <summary>
 /// The run.
 /// </summary>
 /// <param name="parent">
 /// The parent.
 /// </param>
 /// <param name="device">
 /// The device.
 /// </param>
 /// <returns>
 /// The <see cref="bool"/>.
 /// </returns>
 public bool Run(string parent, string device)
 {
     Logging.Enter(this, MethodBase.GetCurrentMethod().Name);
     Reporting.Info("Function Remove Device is not supported by Host Application: DeviceCare");
     return(false);
 }
 /// <summary>
 /// The run.
 /// </summary>
 /// <returns>
 /// The <see cref="bool"/>.
 /// </returns>
 public bool Run()
 {
     Logging.Enter(this, MethodBase.GetCurrentMethod().Name);
     Reporting.Info("Function Register Device Type is not implemented by Host Application: DeviceCare");
     return(false);
 }
 /// <summary>
 /// The run.
 /// </summary>
 /// <param name="filePath">
 /// The file path.
 /// </param>
 /// <param name="fileName">
 /// The file name.
 /// </param>
 /// <returns>
 /// The <see cref="bool"/>.
 /// </returns>
 public bool Run(string filePath, string fileName)
 {
     Logging.Enter(this, MethodBase.GetCurrentMethod().Name);
     Reporting.Info("Function Restore Device Data is not supported by Host Application: DeviceCare");
     return(false);
 }
Esempio n. 7
0
 /// <summary>
 /// The run.
 /// </summary>
 /// <returns>
 /// The <see cref="string"/>.
 /// </returns>
 public string Run()
 {
     Logging.Enter(this, MethodBase.GetCurrentMethod().Name);
     Reporting.Info("Function Select Device is not supported by Host Application: DeviceCare");
     return(string.Empty);
 }
Esempio n. 8
0
 /// <summary>
 /// The run.
 /// </summary>
 /// <returns>
 /// The <see cref="bool"/>.
 /// </returns>
 public List <string> Run()
 {
     Logging.Enter(this, MethodBase.GetCurrentMethod().Name);
     Reporting.Info("Function Get Device List is not supported by Host Application: DeviceCare");
     return(null);
 }