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: components/fileselect/events.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ The `FileSelectFileInfo` type contains the following properties:
27
27
Property | Type | Description
28
28
---------|----------|---------
29
29
`Id` | `string` | The unique file identifier.
30
-
`Name`|`string` | The file name.
30
+
`Name`|`string` | The **encoded**file name, including the extension. One method to decode it is [`System.Net.WebUtility.HtmlDecode()`](https://learn.microsoft.com/en-us/dotnet/api/system.net.webutility.htmldecode). The file can be renamed in the [`OnSelect`](#onselect) handler.
31
31
`Size` |`long` | The file size in bytes.
32
32
`Extension` |`string` | The file extension.
33
33
`InvalidExtension` | `bool` | A Boolean flag that shows if the file type is invalid.
0 commit comments