4 overrides of EditFormatString
Microsoft.AspNetCore.Grpc.Swagger (1)
Internal\GrpcModelMetadata.cs (1)
27public override string EditFormatString { get; }
Microsoft.AspNetCore.Mvc.Abstractions.Test (1)
ModelBinding\ModelMetadataTest.cs (1)
540public override string EditFormatString
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
EndpointModelMetadata.cs (1)
27public override string? EditFormatString { get; }
Microsoft.AspNetCore.Mvc.Core (1)
ModelBinding\Metadata\DefaultModelMetadata.cs (1)
213public override string? EditFormatString => DisplayMetadata.EditFormatStringProvider();
10 references to EditFormatString
Microsoft.AspNetCore.Mvc.Abstractions (1)
ModelBinding\ModelMetadata.cs (1)
282/// Gets a value indicating whether <see cref="EditFormatString"/> has a non-<c>null</c>, non-empty
Microsoft.AspNetCore.Mvc.Core (2)
ModelBinding\Metadata\DisplayMetadata.cs (2)
89/// See <see cref="ModelMetadata.EditFormatString"/> 115/// <see cref="ModelMetadata.EditFormatString"/>.
Microsoft.AspNetCore.Mvc.DataAnnotations.Test (3)
ModelMetadataProviderTest.cs (3)
185new DataTypeWithCustomEditFormat(), metadata => metadata.EditFormatString 207metadata => metadata.EditFormatString 578var result = metadata.EditFormatString;
Microsoft.AspNetCore.Mvc.TagHelpers (3)
InputTagHelper.cs (3)
482string.IsNullOrEmpty(modelExplorer.Metadata.EditFormatString)) 511format = modelExplorer.Metadata.EditFormatString; 517format = modelExplorer.Metadata.EditFormatString;
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
TemplateBuilder.cs (1)
82viewData.ModelMetadata.EditFormatString;