MultipartContent Constructors

Definition

Creates a new instance of the MultipartContent class.

Overloads

MultipartContent()

Creates a new instance of the MultipartContent class.

MultipartContent(String)

Creates a new instance of the MultipartContent class.

MultipartContent(String, String)

Creates a new instance of the MultipartContent class.

MultipartContent()

Source:
MultipartContent.cs
Source:
MultipartContent.cs
Source:
MultipartContent.cs

Creates a new instance of the MultipartContent class.

public:
 MultipartContent();
public MultipartContent ();
Public Sub New ()

Applies to

MultipartContent(String)

Source:
MultipartContent.cs
Source:
MultipartContent.cs
Source:
MultipartContent.cs

Creates a new instance of the MultipartContent class.

public:
 MultipartContent(System::String ^ subtype);
public MultipartContent (string subtype);
new System.Net.Http.MultipartContent : string -> System.Net.Http.MultipartContent
Public Sub New (subtype As String)

Parameters

subtype
String

The subtype of the multipart content.

Exceptions

The subtype was null or contains only white space characters.

Applies to

MultipartContent(String, String)

Source:
MultipartContent.cs
Source:
MultipartContent.cs
Source:
MultipartContent.cs

Creates a new instance of the MultipartContent class.

public:
 MultipartContent(System::String ^ subtype, System::String ^ boundary);
public MultipartContent (string subtype, string boundary);
new System.Net.Http.MultipartContent : string * string -> System.Net.Http.MultipartContent
Public Sub New (subtype As String, boundary As String)

Parameters

subtype
String

The subtype of the multipart content.

boundary
String

The boundary string for the multipart content.

Exceptions

The subtype was null or an empty string.

The boundary was null or contains only white space characters.

-or-

The boundary ends with a space character.

The length of the boundary was greater than 70.

Applies to