MultipartReader Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
MultipartReader(String, Stream) |
Initializes a new instance of MultipartReader. |
MultipartReader(String, Stream, Int32) |
Initializes a new instance of MultipartReader. |
MultipartReader(String, Stream)
- Source:
- MultipartReader.cs
- Source:
- MultipartReader.cs
- Source:
- MultipartReader.cs
Initializes a new instance of MultipartReader.
public:
MultipartReader(System::String ^ boundary, System::IO::Stream ^ stream);
public MultipartReader (string boundary, System.IO.Stream stream);
new Microsoft.AspNetCore.WebUtilities.MultipartReader : string * System.IO.Stream -> Microsoft.AspNetCore.WebUtilities.MultipartReader
Public Sub New (boundary As String, stream As Stream)
Parameters
- boundary
- String
The multipart boundary.
Applies to
MultipartReader(String, Stream, Int32)
- Source:
- MultipartReader.cs
- Source:
- MultipartReader.cs
- Source:
- MultipartReader.cs
Initializes a new instance of MultipartReader.
public:
MultipartReader(System::String ^ boundary, System::IO::Stream ^ stream, int bufferSize);
public MultipartReader (string boundary, System.IO.Stream stream, int bufferSize);
new Microsoft.AspNetCore.WebUtilities.MultipartReader : string * System.IO.Stream * int -> Microsoft.AspNetCore.WebUtilities.MultipartReader
Public Sub New (boundary As String, stream As Stream, bufferSize As Integer)
Parameters
- boundary
- String
The multipart boundary.
- bufferSize
- Int32
The minimum buffer size to use.