MultipartFormDataContent 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.
Creates a new instance of the MultipartFormDataContent class.
Overloads
MultipartFormDataContent() |
Creates a new instance of the MultipartFormDataContent class. |
MultipartFormDataContent(String) |
Creates a new instance of the MultipartFormDataContent class. |
MultipartFormDataContent()
- Source:
- MultipartFormDataContent.cs
- Source:
- MultipartFormDataContent.cs
- Source:
- MultipartFormDataContent.cs
Creates a new instance of the MultipartFormDataContent class.
public:
MultipartFormDataContent();
public MultipartFormDataContent ();
Public Sub New ()
Applies to
MultipartFormDataContent(String)
- Source:
- MultipartFormDataContent.cs
- Source:
- MultipartFormDataContent.cs
- Source:
- MultipartFormDataContent.cs
Creates a new instance of the MultipartFormDataContent class.
public:
MultipartFormDataContent(System::String ^ boundary);
public MultipartFormDataContent (string boundary);
new System.Net.Http.MultipartFormDataContent : string -> System.Net.Http.MultipartFormDataContent
Public Sub New (boundary As String)
Parameters
- boundary
- String
The boundary string for the multipart form data content.
Exceptions
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.