public static bool ShowDialog(this IOpenFolderDialogService service, Action <CancelEventArgs> fileOK)
 {
     VerifyService(service);
     return(service.ShowDialog(fileOK, null));
 }
 public static bool ShowDialog(this IOpenFolderDialogService service, string directoryName)
 {
     VerifyService(service);
     return(service.ShowDialog(null, directoryName));
 }
 public static bool ShowDialog(this IOpenFolderDialogService service)
 {
     VerifyService(service);
     return(service.ShowDialog(null, null));
 }