9 references to CreatePropertyModelName
System.Web (9)
ModelBinding\CollectionModelBinder`1.cs (1)
10
string indexPropertyName = ModelBinderUtil.
CreatePropertyModelName
(bindingContext.ModelName, "index");
ModelBinding\ComplexModelBinder.cs (1)
12
ModelName = ModelBinderUtil.
CreatePropertyModelName
(bindingContext.ModelName, propertyMetadata.PropertyName)
ModelBinding\KeyValuePairModelBinderProvider.cs (2)
9
string keyFieldName = ModelBinderUtil.
CreatePropertyModelName
(bindingContext.ModelName, "key");
10
string valueFieldName = ModelBinderUtil.
CreatePropertyModelName
(bindingContext.ModelName, "value");
ModelBinding\KeyValuePairModelBinderUtil.cs (1)
8
ModelName = ModelBinderUtil.
CreatePropertyModelName
(parentBindingContext.ModelName, propertyName)
ModelBinding\ModelValidationNode.cs (3)
145
string propertyKeyRoot = ModelBinderUtil.
CreatePropertyModelName
(ModelStateKey, propertyMetadata.PropertyName);
150
string thisErrorKey = ModelBinderUtil.
CreatePropertyModelName
(propertyKeyRoot, propertyResult.MemberName);
167
string trueModelStateKey = ModelBinderUtil.
CreatePropertyModelName
(ModelStateKey, validationResult.MemberName);
ModelBinding\MutableObjectModelBinder.cs (1)
166
string fullPropertyKey = ModelBinderUtil.
CreatePropertyModelName
(bindingContext.ModelName, missingPropertyName);