public bool MatchesUrlAndRepositoryPath(string tfsUrl, string tfsRepositoryPath) { if (!MatchesTfsUrl(tfsUrl)) { return(false); } if (TfsRepositoryPath == null) { return(tfsRepositoryPath == null); } return(TfsRepositoryPath.Equals(tfsRepositoryPath, StringComparison.OrdinalIgnoreCase)); }
public bool MatchesUrlAndRepositoryPath(string tfsUrl, string tfsRepositoryPath) { return(MatchesTfsUrl(tfsUrl) && TfsRepositoryPath.Equals(tfsRepositoryPath, StringComparison.OrdinalIgnoreCase)); }