SetRegistryValue() public static method

public static SetRegistryValue ( string Name, object Value ) : void
Name string
Value object
return void
 private void UpdaterWorker_DoWork(object sender, DoWorkEventArgs e)
 {
     this._IsCheckUpdateFromTimer = true;
     Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Normal,
                            (Action)(() => {
         autoUpdater.ForceCheckForUpdate(true);
     }));
     Utilities.SetRegistryValue("LastUpdateCheck", DateTime.Now.ToBinary(), RegistryValueKind.QWord);
     LastUpdateCheck = DateTime.Now;
 }