5 instantiations of FileConverter
Microsoft.AspNetCore.Components.Endpoints (5)
FormMapping\WellKnownConverters.cs (5)
46{ typeof(IFormFileCollection), new FileConverter<IFormFileCollection>() }, 47{ typeof(IFormFile), new FileConverter<IFormFile>() }, 48{ typeof(IReadOnlyList<IFormFile>), new FileConverter<IReadOnlyList<IFormFile>>() }, 51{ typeof(IBrowserFile), new FileConverter<IBrowserFile>() }, 52{ typeof(IReadOnlyList<IBrowserFile>), new FileConverter<IReadOnlyList<IBrowserFile>>() }
1 reference to FileConverter
Microsoft.AspNetCore.Components.Endpoints (1)
FormMapping\Factories\FileConverterFactory.cs (1)
28return Activator.CreateInstance(typeof(FileConverter<>).MakeGenericType(type)) as FormDataConverter ??