CmisSync.Setup.LocalPathExistsHandler C# (CSharp) Метод

LocalPathExistsHandler() приватный статический Метод

private static LocalPathExistsHandler ( string path ) : bool
path string
Результат bool
        private static bool LocalPathExistsHandler(string path) {
            return System.Windows.MessageBox.Show(String.Format(
                    Properties_Resources.ConfirmExistingLocalFolderText, path),
                    String.Format(Properties_Resources.ConfirmExistingLocalFolderTitle, path),
                    MessageBoxButton.YesNo,
                    MessageBoxImage.Question,
                    MessageBoxResult.No
                    ) == MessageBoxResult.Yes;
        }