Share via


FileMultipartSection Constructors

Definition

Overloads

FileMultipartSection(MultipartSection)

Creates a new instance of the FileMultipartSection class

FileMultipartSection(MultipartSection, ContentDispositionHeaderValue)

Creates a new instance of the FileMultipartSection class

FileMultipartSection(MultipartSection)

Source:
FileMultipartSection.cs
Source:
FileMultipartSection.cs

Creates a new instance of the FileMultipartSection class

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

Parameters

section
MultipartSection

The section from which to create the FileMultipartSection

Remarks

Reparses the content disposition header

Applies to

FileMultipartSection(MultipartSection, ContentDispositionHeaderValue)

Source:
FileMultipartSection.cs
Source:
FileMultipartSection.cs

Creates a new instance of the FileMultipartSection class

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

Parameters

section
MultipartSection

The section from which to create the FileMultipartSection

header
ContentDispositionHeaderValue

An already parsed content disposition header

Applies to