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