ModelMetadata.GetDisplayName Method ()

 

Gets the display name for the model.

Namespace:   System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

Syntax

public string GetDisplayName()
public:
String^ GetDisplayName()
member GetDisplayName : unit -> string
Public Function GetDisplayName As String

Return Value

Type: System.String

The display name for the model.

Remarks

If the DisplayName property is not null, the DisplayName property is returned. If the DisplayName property is null, and the PropertyName property is not null, the PropertyName property is returned. If the DisplayName property is null and the PropertyName property is null, the ModelType name is returned.

See Also

ModelMetadata Class
System.Web.Mvc Namespace

Return to top