5 writes to Negate
Microsoft.AspNetCore.Rewrite (5)
UrlMatches\ExactMatch.cs (1)
15Negate = negate;
UrlMatches\FileSizeMatch.cs (1)
10Negate = negate;
UrlMatches\IsDirectoryMatch.cs (1)
10Negate = negate;
UrlMatches\IsFileMatch.cs (1)
10Negate = negate;
UrlMatches\RegexMatch.cs (1)
15Negate = negate;
4 references to Negate
Microsoft.AspNetCore.Rewrite (4)
UrlMatches\ExactMatch.cs (1)
21var success = pathMatch != Negate;
UrlMatches\IsDirectoryMatch.cs (1)
16return new MatchResults(success: res != Negate);
UrlMatches\IsFileMatch.cs (1)
16return new MatchResults(success: res != Negate);
UrlMatches\RegexMatch.cs (1)
21return new MatchResults(success: res.Success != Negate, new BackReferenceCollection(res.Groups));