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
/// The FileStreamDelegate defining functions that can handle file stream data from this parser.
9
+
///
10
+
/// Delegates can assume that the data is sequential i.e. the data received by any delegates will be
11
+
/// the data immediately following any previously received data.
12
+
/// </summary>
13
+
/// <param name="name">The name of the multipart data.</param>
14
+
/// <param name="fileName">The name of the file.</param>
15
+
/// <param name="contentType">The content type of the multipart data.</param>
16
+
/// <param name="contentDisposition">The content disposition of the multipart data.</param>
17
+
/// <param name="buffer">Some of the data from the file (not necessarily all of the data).</param>
18
+
/// <param name="bytes">The length of data in buffer.</param>
19
+
/// <param name="partNumber">Each chunk (or "part") in a given file is sequentially numbered, starting at zero.</param>
20
+
/// <param name="additionalProperties">Properties other than the "well known" ones (such as name, filename, content-type, etc.) associated with a file stream.</param>
0 commit comments