Skip to content

Commit 6dd8b13

Browse files
authored
add note about InputStream breaking change
1 parent 3c750c7 commit 6dd8b13

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

controls/asyncupload/how-to/how-to-manipulate-the-uploaded-files.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ If you need to perform additional actions on uploaded files before saving them (
3030
|ContentLength|Int64|The size of the uploaded file, in bytes.|
3131
|ContentType|string|The MIME type of the uploaded file.|
3232
|FileName|string|The fully qualified name of the file on the client. (IE6 and some older browsers only). To get a file name that is the same for all browsers, use the **GetName()** method instead.|
33-
|InputStream|System.IO.Stream|A stream object that can be used to read the file contents.|
33+
|InputStream|System.IO.Stream|A stream object that can be used to read the file contents. 
34+
Note: As of R2 2017 SP2 the temporary files saved to the disk have the .tmp extension. This is due to the security improvement discussed in the [Insecure Direct Object Reference](http://www.telerik.com/support/kb/aspnet-ajax/upload-(async)/details/insecure-direct-object-reference) article.|
3435
| **Methods** |||
3536
|GetName()|string|Returns the name of the uploaded file.|
3637
|GetNameWithoutExtension()|string|Returns the name of the uploaded file, without the file extension.|

0 commit comments

Comments
 (0)