FormMultipartSection Constructors

Definition

Overloads

FormMultipartSection(MultipartSection)

Creates a new instance of the FormMultipartSection class

FormMultipartSection(MultipartSection, ContentDispositionHeaderValue)

Creates a new instance of the FormMultipartSection class

FormMultipartSection(MultipartSection)

Source:
FormMultipartSection.cs
Source:
FormMultipartSection.cs
Source:
FormMultipartSection.cs

Creates a new instance of the FormMultipartSection class

public:
 FormMultipartSection(Microsoft::AspNetCore::WebUtilities::MultipartSection ^ section);
public FormMultipartSection (Microsoft.AspNetCore.WebUtilities.MultipartSection section);
new Microsoft.AspNetCore.WebUtilities.FormMultipartSection : Microsoft.AspNetCore.WebUtilities.MultipartSection -> Microsoft.AspNetCore.WebUtilities.FormMultipartSection
Public Sub New (section As MultipartSection)

Parameters

section
MultipartSection

The section from which to create the FormMultipartSection

Remarks

Reparses the content disposition header

Applies to

FormMultipartSection(MultipartSection, ContentDispositionHeaderValue)

Source:
FormMultipartSection.cs
Source:
FormMultipartSection.cs
Source:
FormMultipartSection.cs

Creates a new instance of the FormMultipartSection class

public:
 FormMultipartSection(Microsoft::AspNetCore::WebUtilities::MultipartSection ^ section, Microsoft::Net::Http::Headers::ContentDispositionHeaderValue ^ header);
public FormMultipartSection (Microsoft.AspNetCore.WebUtilities.MultipartSection section, Microsoft.Net.Http.Headers.ContentDispositionHeaderValue header);
public FormMultipartSection (Microsoft.AspNetCore.WebUtilities.MultipartSection section, Microsoft.Net.Http.Headers.ContentDispositionHeaderValue? header);
new Microsoft.AspNetCore.WebUtilities.FormMultipartSection : Microsoft.AspNetCore.WebUtilities.MultipartSection * Microsoft.Net.Http.Headers.ContentDispositionHeaderValue -> Microsoft.AspNetCore.WebUtilities.FormMultipartSection
Public Sub New (section As MultipartSection, header As ContentDispositionHeaderValue)

Parameters

section
MultipartSection

The section from which to create the FormMultipartSection

header
ContentDispositionHeaderValue

An already parsed content disposition header

Applies to