1 instantiation of FormDataMapperOptions
Microsoft.AspNetCore.Components.Endpoints (1)
DependencyInjection\RazorComponentsServiceOptions.cs (1)
16internal FormDataMapperOptions _formMappingOptions = new();
51 references to FormDataMapperOptions
Microsoft.AspNetCore.Components.Endpoints (51)
DependencyInjection\RazorComponentsServiceOptions.cs (1)
16internal FormDataMapperOptions _formMappingOptions = new();
FormMapping\Converters\CollectionConverter.cs (1)
56FormDataMapperOptions options,
FormMapping\Converters\CompiledComplexTypeConverter.cs (2)
10public delegate bool ConverterDelegate(ref FormDataReader reader, Type type, FormDataMapperOptions options, out T? result, out bool found); 14internal override bool TryRead(ref FormDataReader context, Type type, FormDataMapperOptions options, out T? result, out bool found)
FormMapping\Converters\DictionaryConverter.cs (1)
32FormDataMapperOptions options,
FormMapping\Converters\EnumConverter.cs (1)
30internal override bool TryRead(ref FormDataReader reader, Type type, FormDataMapperOptions options, out TEnum result, out bool found)
FormMapping\Converters\FileConverter.cs (1)
16internal override bool TryRead(ref FormDataReader reader, Type type, FormDataMapperOptions options, out T? result, out bool found)
FormMapping\Converters\NullableConverter.cs (1)
33internal override bool TryRead(ref FormDataReader context, Type type, FormDataMapperOptions options, out T? result, out bool found)
FormMapping\Converters\ParsableConverter.cs (1)
30internal override bool TryRead(ref FormDataReader reader, Type type, FormDataMapperOptions options, out T? result, out bool found)
FormMapping\Converters\UriFormDataConverter.cs (1)
32internal override bool TryRead(ref FormDataReader context, Type type, FormDataMapperOptions options, out Uri? result, out bool found)
FormMapping\Factories\CollectionConverterFactory.cs (2)
15public bool CanConvert(Type type, FormDataMapperOptions options) 47public FormDataConverter CreateConverter(Type type, FormDataMapperOptions options)
FormMapping\Factories\Collections\ConcreteTypeCollectionConverterFactory.cs (2)
16public bool CanConvert(Type _, FormDataMapperOptions options) => true; 20public FormDataConverter CreateConverter(Type _, FormDataMapperOptions options)
FormMapping\Factories\Collections\TypedCollectionConverterFactory.cs (4)
15public abstract bool CanConvert(Type type, FormDataMapperOptions options); 19public abstract FormDataConverter CreateConverter(Type type, FormDataMapperOptions options); 26public override bool CanConvert(Type _, FormDataMapperOptions options) 111public override FormDataConverter CreateConverter(Type _, FormDataMapperOptions options)
FormMapping\Factories\ComplexType\ComplexTypeExpressionConverterFactory.cs (1)
12internal abstract FormDataConverter CreateConverter(Type type, FormDataMapperOptions options);
FormMapping\Factories\ComplexType\ComplexTypeExpressionConverterFactoryOfT.cs (5)
16internal override CompiledComplexTypeConverter<T> CreateConverter(Type type, FormDataMapperOptions options) 24private CompiledComplexTypeConverter<T>.ConverterDelegate CreateConverterBody(Type type, FormDataMapperOptions options) 359nameof(FormDataMapperOptions.ResolveConverter), 459nameof(FormDataMapperOptions.ResolveConverter), 576Expression.Parameter(typeof(FormDataMapperOptions), "options"),
FormMapping\Factories\ComplexTypeConverterFactory.cs (3)
12internal class ComplexTypeConverterFactory(FormDataMapperOptions options, ILoggerFactory loggerFactory) : IFormDataConverterFactory 18public bool CanConvert(Type type, FormDataMapperOptions options) 99public FormDataConverter CreateConverter(Type type, FormDataMapperOptions options)
FormMapping\Factories\Dictionary\ConcreteTypeDictionaryConverterFactory.cs (2)
15public bool CanConvert(Type type, FormDataMapperOptions options) => true; 19public FormDataConverter CreateConverter(Type type, FormDataMapperOptions options)
FormMapping\Factories\Dictionary\TypedDictionaryConverterFactory.cs (2)
16public bool CanConvert(Type type, FormDataMapperOptions options) 71public FormDataConverter CreateConverter(Type type, FormDataMapperOptions options)
FormMapping\Factories\DictionaryConverterFactory.cs (2)
15public bool CanConvert(Type type, FormDataMapperOptions options) 73public FormDataConverter CreateConverter(Type type, FormDataMapperOptions options)
FormMapping\Factories\EnumConverterFactory.cs (2)
12public bool CanConvert(Type type, FormDataMapperOptions options) => type.IsEnum; 16public FormDataConverter CreateConverter(Type type, FormDataMapperOptions options)
FormMapping\Factories\FileConverterFactory.cs (2)
17public bool CanConvert(Type type, FormDataMapperOptions options) => CanConvertCommon(type) || type == typeof(IBrowserFile) || type == typeof(IReadOnlyList<IBrowserFile>); 26public FormDataConverter CreateConverter(Type type, FormDataMapperOptions options)
FormMapping\Factories\NullableConverterFactory.cs (2)
15public bool CanConvert(Type type, FormDataMapperOptions options) 23public FormDataConverter CreateConverter(Type type, FormDataMapperOptions options)
FormMapping\Factories\ParsableConverterFactory.cs (2)
15public bool CanConvert(Type type, FormDataMapperOptions options) 22public FormDataConverter CreateConverter(Type type, FormDataMapperOptions options)
FormMapping\FormDataConverterOfT.cs (1)
12internal abstract bool TryRead(ref FormDataReader context, Type type, FormDataMapperOptions options, out T? result, out bool found);
FormMapping\FormDataMapper.cs (1)
15FormDataMapperOptions options)
FormMapping\FormDataMapperOptions.cs (2)
35Logger = loggerFactory.CreateLogger<FormDataMapperOptions>(); 60private static FormDataConverter CreateConverter(Type type, FormDataMapperOptions options)
FormMapping\HttpContextFormValueMapper.cs (3)
20private readonly FormDataMapperOptions _options; 102FormDataMapperOptions options, 113FormDataMapperOptions options,
FormMapping\IFormDataConverterFactory.cs (2)
12public bool CanConvert(Type type, FormDataMapperOptions options); 16public FormDataConverter CreateConverter(Type type, FormDataMapperOptions options);
FormMapping\Metadata\FormDataMetadataFactory.cs (1)
26public FormDataTypeMetadata? GetOrCreateMetadataFor(Type type, FormDataMapperOptions options)