8 references to ResponseBodyLogLimit
Microsoft.AspNetCore.HttpLogging (7)
HttpLoggingEndpointConventionBuilderExtensions.cs (2)
20/// <param name="responseBodyLogLimit">Sets the <see cref="HttpLoggingOptions.ResponseBodyLogLimit"/> for this endpoint. A value of <c>-1</c> means use the default setting in <see cref="HttpLoggingOptions.ResponseBodyLogLimit"/>.</param>
HttpLoggingFields.cs (3)
134/// the entire response body up to <see cref="HttpLoggingOptions.ResponseBodyLogLimit"/>. 186/// the entire response body up to <see cref="HttpLoggingOptions.ResponseBodyLogLimit"/>. 195/// and <see cref="HttpLoggingOptions.ResponseBodyLogLimit"/>.
HttpLoggingInterceptorContext.cs (1)
63/// This is pre-populated with the value from <see cref="HttpLoggingOptions.ResponseBodyLogLimit"/>,
HttpLoggingMiddleware.cs (1)
80logContext.ResponseBodyLogLimit = options.ResponseBodyLogLimit;
Microsoft.AspNetCore.HttpLogging.Tests (1)
HttpLoggingMiddlewareTests.cs (1)
1080var expected = input.Substring(0, options.CurrentValue.ResponseBodyLogLimit);