Fix XML documentation for IFormFileCollection (#1041)

This commit is contained in:
Roma Marusyk 2018-09-28 03:13:28 +03:00 committed by James Newton-King
parent 65338ca9f1
commit c7eaf77953
1 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ namespace Microsoft.AspNetCore.Http
public interface IFormFileCollection : IReadOnlyList<IFormFile>
{
/// <summary>
/// Gets the file with the specified name.
/// Gets the first file with the specified name.
/// </summary>
/// <param name="name">The name of the file to get.</param>
/// <returns>
@ -20,7 +20,7 @@ namespace Microsoft.AspNetCore.Http
IFormFile this[string name] { get; }
/// <summary>
/// Gets the file with the specified name.
/// Gets the first file with the specified name.
/// </summary>
/// <param name="name">The name of the file to get.</param>
/// <returns>
@ -39,4 +39,4 @@ namespace Microsoft.AspNetCore.Http
/// </returns>
IReadOnlyList<IFormFile> GetFiles(string name);
}
}
}