6 references to CategoryName
Microsoft.AspNetCore.Diagnostics.Middleware (3)
..\..\..\..\src\Libraries\Microsoft.AspNetCore.Diagnostics.Middleware\Buffering\PerRequestLogBufferingOptionsCustomValidator.cs (3)
20if (rule.CategoryName is null) 25int wildcardIndex = rule.CategoryName.IndexOf(WildcardChar, StringComparison.Ordinal); 26if (wildcardIndex >= 0 && rule.CategoryName.IndexOf(WildcardChar, wildcardIndex + 1) >= 0)
Microsoft.Extensions.Telemetry.Tests (3)
..\..\..\..\test\Libraries\Microsoft.Extensions.Telemetry.Tests\Buffering\GlobalLogBufferingConfigureOptionsTests.cs (3)
92Assert.Equal("TestCategory", options.Rules[0].CategoryName); 120Assert.Equal("Category1", options.Rules[0].CategoryName); 122Assert.Equal("Category2", options.Rules[1].CategoryName);