We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6924ea8 commit 8f5fc47Copy full SHA for 8f5fc47
1 file changed
Source/HttpMultipartParser/StreamingMultipartFormDataParser.cs
@@ -59,6 +59,11 @@ public class StreamingMultipartFormDataParser
59
60
#region Fields
61
62
+ /// <summary>
63
+ /// List of mimetypes that should be detected as file.
64
+ /// </summary>
65
+ private readonly string[] binaryMimeTypes = { "application/octet-stream" };
66
+
67
/// <summary>
68
/// The stream we are parsing.
69
/// </summary>
@@ -92,11 +97,6 @@ public class StreamingMultipartFormDataParser
92
97
93
98
private bool readEndBoundary;
94
99
95
- /// <summary>
96
- /// List of mimetypes that should be detected as file.
- /// </summary>
- private string[] binaryMimeTypes = { "application/octet-stream" };
-
100
#endregion
101
102
#region Constructors and Destructors
0 commit comments