Exemplo n.º 1
0
        public bool PutSyncSettings(SMSSyncSettings o)
        {
            bool ret = SMSSyncSettings.RebootNeeded(SyncSettings, o);

            SyncSettings = o;
            return(ret);
        }
Exemplo n.º 2
0
        public bool PutSyncSettings(object o)
        {
            SMSSyncSettings n   = (SMSSyncSettings)o;
            bool            ret = SMSSyncSettings.RebootNeeded(SyncSettings, n);

            SyncSettings = n;
            return(ret);
        }
Exemplo n.º 3
0
 public static bool RebootNeeded(SMSSyncSettings x, SMSSyncSettings y)
 {
     return
         (x.EnableFM != y.EnableFM ||
          x.AllowOverlock != y.AllowOverlock ||
          x.UseBIOS != y.UseBIOS ||
          x.ConsoleRegion != y.ConsoleRegion ||
          x.DisplayType != y.DisplayType);
 }
Exemplo n.º 4
0
			public static bool RebootNeeded(SMSSyncSettings x, SMSSyncSettings y)
			{
				return
					x.EnableFM != y.EnableFM ||
					x.AllowOverlock != y.AllowOverlock ||
					x.UseBIOS != y.UseBIOS ||
					x.ConsoleRegion != y.ConsoleRegion ||
					x.DisplayType != y.DisplayType;
			}