4 instantiations of EditableAttribute
Microsoft.AspNetCore.Mvc.DataAnnotations.Test (4)
DataAnnotationsMetadataProviderTest.cs (2)
153var editable = new EditableAttribute(allowEdit: false); 172var editable = new EditableAttribute(allowEdit: true);
ModelMetadataProviderTest.cs (2)
305new EditableAttribute(allowEdit: false), 310new EditableAttribute(allowEdit: true),
5 references to EditableAttribute
Microsoft.AspNetCore.Mvc.DataAnnotations (2)
DataAnnotationsMetadataProvider.cs (2)
46var editableAttribute = context.Attributes.OfType<EditableAttribute>().FirstOrDefault();
Microsoft.AspNetCore.Mvc.DataAnnotations.Test (2)
DataAnnotationsMetadataProviderTest.cs (2)
153var editable = new EditableAttribute(allowEdit: false); 172var editable = new EditableAttribute(allowEdit: true);
System.ComponentModel.DataAnnotations (1)
System.ComponentModel.DataAnnotations.cs (1)
15[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.DataAnnotations.EditableAttribute))]