22 references to OutgoingPathLoggingMode
Microsoft.Extensions.Http.Diagnostics (6)
Logging\Internal\HttpRequestReader.cs (2)
41
private readonly
OutgoingPathLoggingMode
_outgoingPathLogMode;
168
if (_outgoingPathLogMode ==
OutgoingPathLoggingMode
.Formatted)
Logging\LoggingOptions.cs (4)
24
private const
OutgoingPathLoggingMode
DefaultPathLoggingMode =
OutgoingPathLoggingMode
.Formatted;
124
/// The default value is <see cref="
OutgoingPathLoggingMode
.Formatted"/>.
131
public
OutgoingPathLoggingMode
RequestPathLoggingMode { get; set; } = DefaultPathLoggingMode;
Microsoft.Extensions.Http.Diagnostics.Tests (16)
Logging\AcceptanceTests.cs (1)
349
o.RequestPathLoggingMode =
OutgoingPathLoggingMode
.Structured;
Logging\HttpClientLoggerTest.cs (6)
210
RequestPathLoggingMode =
OutgoingPathLoggingMode
.Structured,
302
RequestPathLoggingMode =
OutgoingPathLoggingMode
.Structured,
409
RequestPathLoggingMode =
OutgoingPathLoggingMode
.Structured,
505
RequestPathLoggingMode =
OutgoingPathLoggingMode
.Structured,
619
RequestPathLoggingMode =
OutgoingPathLoggingMode
.Structured,
889
RequestPathLoggingMode =
OutgoingPathLoggingMode
.Structured,
Logging\HttpClientLoggingExtensionsTest.cs (4)
154
var
formatRequestPath = _fixture.Create<
OutgoingPathLoggingMode
>();
263
var
formatRequestPath = _fixture.Create<
OutgoingPathLoggingMode
>();
Logging\HttpRequestReaderTest.cs (2)
266
RequestPathLoggingMode =
OutgoingPathLoggingMode
.Structured
338
RequestPathLoggingMode =
OutgoingPathLoggingMode
.Structured
Logging\LoggingOptionsTest.cs (3)
101
[CombinatorialValues(
OutgoingPathLoggingMode
.Structured,
OutgoingPathLoggingMode
.Formatted)]
102
OutgoingPathLoggingMode
testValue)