7 references to GetOrCreateMetadataFor
Microsoft.AspNetCore.Components.Endpoints (7)
FormMapping\Factories\ComplexType\ComplexTypeExpressionConverterFactoryOfT.cs (1)
26var metadata = factory.GetOrCreateMetadataFor(type, options) ??
FormMapping\Factories\ComplexTypeConverterFactory.cs (1)
22var metadata = MetadataFactory.GetOrCreateMetadataFor(type, options);
FormMapping\Metadata\FormDataMetadataFactory.cs (5)
107result.KeyType = GetOrCreateMetadataFor(keyType, options); 108result.ValueType = GetOrCreateMetadataFor(valueType, options); 116result.ElementType = GetOrCreateMetadataFor(CollectionConverterFactory.ResolveElementType(type)!, options); 174var parameterTypeInfo = GetOrCreateMetadataFor(parameter.ParameterType, options); 224var propertyTypeInfo = GetOrCreateMetadataFor(property.PropertyType, options);