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:
authorSébastien Ros <sebastienros@gmail.com>2022-10-15 01:35:35 +0300
committerGitHub <noreply@github.com>2022-10-15 01:35:35 +0300
commit89d0f6d442fbb46a247199d0b7b262a1f3746406 (patch)
treec82d5857d287f916e664f7dd1cf0e2d684d9d5ee
parent4acb483195627ba8dfa38497e333601d13db1ac4 (diff)
Fix method reference in docsebros/36712
-rw-r--r--src/Http/Http.Features/src/IFormCollection.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Http/Http.Features/src/IFormCollection.cs b/src/Http/Http.Features/src/IFormCollection.cs
index eb70b27ab7..c639c7c1e5 100644
--- a/src/Http/Http.Features/src/IFormCollection.cs
+++ b/src/Http/Http.Features/src/IFormCollection.cs
@@ -92,7 +92,7 @@ public interface IFormCollection : IEnumerable<KeyValuePair<string, StringValues
/// </para>
/// <para>
/// Invoking this property could result in thread exhaustion since it's wrapping an asynchronous implementation.
- /// To prevent this the method <see cref="Microsoft.AspNetCore.Http.Features.FormFeature.ReadFormAsync" /> can be used.
+ /// To prevent this the method <see cref="Features.FormFeature.ReadFormAsync" /> can be used.
/// For more information, see <see href="https://aka.ms/aspnet/forms-async" />.
/// </para>
/// </remarks>