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
Copy file name to clipboardExpand all lines: examples/Demo/Shared/Microsoft.FluentUI.AspNetCore.Components.xml
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5273,6 +5273,7 @@
5273
5273
Gets or sets the type of file reading.
5274
5274
For SaveToTemporaryFolder, use <see cref="P:Microsoft.FluentUI.AspNetCore.Components.FluentInputFileEventArgs.LocalFile" /> to retrieve the file.
5275
5275
For Buffer, use <see cref="P:Microsoft.FluentUI.AspNetCore.Components.FluentInputFileEventArgs.Buffer" /> to retrieve bytes.
5276
+
For Stream, use <see cref="P:Microsoft.FluentUI.AspNetCore.Components.FluentInputFileEventArgs.Stream"/> to have full control over retrieving the file.
This might not always be possible depending on the user rights on the host. You may need to change the <code>InputFileMode</code> depending on your use case.
<p>The <code>Stream</code> mode gives you more control of the uploading process to save memory. In order for it to work you will need to implement the handling for the stream on your own.</p>
59
+
60
+
<p>This mode is recommended when you want to upload large files which you do not want to hold entirely in memory.</p>
0 commit comments