Troubleshooting() публичный статический Метод

Runs the Sync Troubleshooting wizard.
public static Troubleshooting ( bool machineWide, [ owner = null ) : void
machineWide bool Configure Sync for machine-wide data instead of just for the current user.
owner [ The parent window the displayed window is modal to; can be null.
Результат void
Пример #1
0
 private void buttonSyncTroubleshoot_Click(object sender, EventArgs e)
 {
     if (Config.LoadSafe().IsSyncConfigured)
     {
         SyncWizard.Troubleshooting(_machineWide, this);
     }
     else
     {
         Msg.Inform(this, Resources.SyncCompleteSetupFirst, MsgSeverity.Warn);
     }
 }