You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Writes the file directly to the response body with the specified <paramref name="streamWriterCallback" /> (<see cref="StatusCodes.Status200OK"/>), and the
1711
+
/// specified <paramref name="contentType" /> as the Content-Type.
1712
+
/// </summary>
1713
+
/// <param name="streamWriterCallback">The callback that allows users to write directly to the response body.</param>
1714
+
/// <param name="contentType">The Content-Type of the file.</param>
1715
+
/// <returns>The created <see cref="PushFileStreamResult"/> for the response.</returns>
/// Writes the file directly to the response body with the specified <paramref name="streamWriterCallback" /> (<see cref="StatusCodes.Status200OK"/>), the
1722
+
/// specified <paramref name="contentType" /> as the Content-Type, and the specified <paramref name="fileDownloadName" /> as the suggested file name.
1723
+
/// </summary>
1724
+
/// <param name="streamWriterCallback">The callback that allows users to write directly to the response body.</param>
1725
+
/// <param name="contentType">The Content-Type of the file.</param>
/// Writes the file directly to the response body with the specified <paramref name="streamWriterCallback" /> (<see cref="StatusCodes.Status200OK"/>), and the
1734
+
/// specified <paramref name="contentType" /> as the Content-Type.
1735
+
/// </summary>
1736
+
/// <param name="streamWriterCallback">The callback that allows users to write directly to the response body.</param>
1737
+
/// <param name="contentType">The Content-Type of the file.</param>
1738
+
/// <param name="lastModified">The <see cref="DateTimeOffset"/> of when the file was last modified.</param>
1739
+
/// <param name="entityTag">The <see cref="EntityTagHeaderValue"/> associated with the file.</param>
1740
+
/// <returns>The created <see cref="PushFileStreamResult"/> for the response.</returns>
/// Writes the file directly to the response body with the specified <paramref name="streamWriterCallback" /> (<see cref="StatusCodes.Status200OK"/>), the
1751
+
/// specified <paramref name="contentType" /> as the Content-Type, and the specified <paramref name="fileDownloadName" /> as the suggested file name.
1752
+
/// </summary>
1753
+
/// <param name="streamWriterCallback">The callback that allows users to write directly to the response body.</param>
1754
+
/// <param name="contentType">The Content-Type of the file.</param>
[LoggerMessage(1,LogLevel.Information,"Executing {FileResultType}, sending file with download name '{FileDownloadName}' ...",EventName="ExecutingFileResultWithNoFileName",SkipEnabledCheck=true)]
0 commit comments