public UpdateChecker(string url, string applicationName, Version applicationVersion, ReleaseChannelType channel, IWebProxy proxy, NewVersionWindowOptions nvwo = null)
 {
     URL = url;
     ApplicationName = applicationName;
     ApplicationVersion = applicationVersion;
     ReleaseChannel = channel;
     Proxy = proxy;
 }
 public UpdateChecker(string url, string applicationName, Version applicationVersion, ReleaseChannelType channel, IWebProxy proxy, NewVersionWindowOptions nvwo = null)
 {
     URL                = url;
     ApplicationName    = applicationName;
     ApplicationVersion = applicationVersion;
     ReleaseChannel     = channel;
     Proxy              = proxy;
 }
 public UpdateChecker(string url, string applicationName, Version applicationVersion,
     ReleaseChannelType channel = ReleaseChannelType.Stable, IWebProxy proxy = null)
 {
     URL = url;
     ApplicationName = applicationName;
     ApplicationVersion = applicationVersion;
     ReleaseChannel = channel;
     Proxy = proxy;
 }
 public UpdateChecker(string url, string applicationName, Version applicationVersion,
                      ReleaseChannelType channel = ReleaseChannelType.Stable, IWebProxy proxy = null)
 {
     URL                = url;
     ApplicationName    = applicationName;
     ApplicationVersion = applicationVersion;
     ReleaseChannel     = channel;
     Proxy              = proxy;
 }
Example #5
0
        private bool forceUpdate = false; // For testing purposes

        public UpdateInfo()
        {
            ReleaseChannel = ReleaseChannelType.Stable;
        }
Example #6
0
        private bool ForceUpdate = false; // For testing purposes

        #endregion Fields

        #region Constructors

        public UpdateInfo(ReleaseChannelType releaseChannel = ReleaseChannelType.Stable)
        {
            ReleaseChannel = releaseChannel;
        }
 public UpdateInfo(ReleaseChannelType channel)
 {
     this.ReleaseChannel = channel;
 }
        private bool ForceUpdate = false; // For testing purposes

        public UpdateInfo(ReleaseChannelType releaseChannel = ReleaseChannelType.Stable)
        {
            ReleaseChannel = releaseChannel;
        }
Example #9
0
 public UpdateInfo(ReleaseChannelType channel)
 {
     this.ReleaseChannel = channel;
 }