ModelStateEntry.GetModelStateForProperty(String) 方法

定义

ModelStateEntry获取具有指定 propertyName的子属性的 。

public:
 abstract Microsoft::AspNetCore::Mvc::ModelBinding::ModelStateEntry ^ GetModelStateForProperty(System::String ^ propertyName);
public abstract Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry GetModelStateForProperty (string propertyName);
public abstract Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry? GetModelStateForProperty (string propertyName);
abstract member GetModelStateForProperty : string -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry
Public MustOverride Function GetModelStateForProperty (propertyName As String) As ModelStateEntry

参数

propertyName
String

要查找的属性名称。

返回

ModelStateEntry如果找到子属性,则为 ;否则为 null

注解

此方法返回任何现有条目,即使是具有 IsContainerNodetrue的条目。

适用于