Clarify docs on HttpRequest.PathBase (#17639)

This commit is contained in:
Andrew Stanton-Nurse 2019-12-11 13:50:03 -08:00 committed by GitHub
parent a2f38254d4
commit eb113093cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -45,9 +45,9 @@ namespace Microsoft.AspNetCore.Http
public abstract HostString Host { get; set; }
/// <summary>
/// Gets or sets the RequestPathBase.
/// Gets or sets the base path for the request. The path base should not end with a trailing slash.
/// </summary>
/// <returns>The RequestPathBase.</returns>
/// <returns>The base path for the request.</returns>
public abstract PathString PathBase { get; set; }
/// <summary>