The current FileBrowser/ImageBrowser Upload method implementation (IFormFile) throws a "Method not found" exception in ASP.NET Core 2.0 applications.
TelerikAspNetCoreAppImageBrowser.zip

Current implementation should be adjusted according to the Microsoft.Net.Http.Headers changes in Core 2.0.
Override the GetFileName method:
public override string GetFileName(IFormFile file)
{
var fileContent = ContentDispositionHeaderValue.Parse(file.ContentDisposition);
return Path.GetFileName(fileContent.FileName.ToString().Trim('"'));
}
Hi,
there are any news on this bug resolution?
Use these controllers Controllers.zip
Still reproduced with internal version 2018.2.226.
TelerikAspNetCoreApp2.zip
Hi @gvovka ,
just tried, and controllers.zip worked for me.
Thank you
Most helpful comment
Use these controllers Controllers.zip