MultipartReader Constructors

Definition

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

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.

stream
Stream

The Stream containing multipart data.

Applies to

MultipartReader(String, Stream, Int32)

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.

stream
Stream

The Stream containing multipart data.

bufferSize
Int32

The minimum buffer size to use.

Applies to