public bool Validate()
 {
     if (!repo.IsUrlValid(repositoryUrlEntry.Text) || !CanCreateUri())
     {
         labelError.Show();
         return(false);
     }
     return(true);
 }
Beispiel #2
0
 public bool Validate()
 {
     if (!repo.IsUrlValid(repositoryUrlEntry.Text))
     {
         labelError.Show();
         return(false);
     }
     else
     {
         return(true);
     }
 }