IsValidPrefix() public static method

public static IsValidPrefix ( string line ) : bool
line string
return bool
 private void SnapshotPrefix_Validating(object sender, CancelEventArgs e)
 {
     if (!Validator.IsValidPrefix(SnapshotPrefix.Text))
     {
         MessageBox.Show("Invalid format for Snapshot Prefix. Must only characters: ( a-z0-9._-=[] )!", "Validation Error");
     }
 }