private async Task HandleFileDispositionSection(
            FileUploadHandler fileUploadHandler,
            MultipartSection section,
            ContentDispositionHeaderValue contentDisposition)
        {
            if (section == null)
            {
                await fileUploadHandler.Handler(null);

                return;
            }

            await fileUploadHandler.Handler(section.Body);
        }