Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Http/Http.Features/src/IHttpRequestIdentifierFeature.cs')
-rw-r--r--src/Http/Http.Features/src/IHttpRequestIdentifierFeature.cs19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/Http/Http.Features/src/IHttpRequestIdentifierFeature.cs b/src/Http/Http.Features/src/IHttpRequestIdentifierFeature.cs
index 34464b2b1a..76dffaa236 100644
--- a/src/Http/Http.Features/src/IHttpRequestIdentifierFeature.cs
+++ b/src/Http/Http.Features/src/IHttpRequestIdentifierFeature.cs
@@ -1,17 +1,16 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
-namespace Microsoft.AspNetCore.Http.Features
+namespace Microsoft.AspNetCore.Http.Features;
+
+/// <summary>
+/// Feature to uniquely identify a request.
+/// </summary>
+public interface IHttpRequestIdentifierFeature
{
/// <summary>
- /// Feature to uniquely identify a request.
+ /// Gets or sets a value to uniquely identify a request.
+ /// This can be used for logging and diagnostics.
/// </summary>
- public interface IHttpRequestIdentifierFeature
- {
- /// <summary>
- /// Gets or sets a value to uniquely identify a request.
- /// This can be used for logging and diagnostics.
- /// </summary>
- string TraceIdentifier { get; set; }
- }
+ string TraceIdentifier { get; set; }
}