Share via


NameExtensions.Name Method (HtmlHelper, String)

 

Gets the full HTML field name for the object that is represented by the expression.

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

Syntax

public static MvcHtmlString Name(
    this HtmlHelper html,
    string name
)
public:
[ExtensionAttribute]
static MvcHtmlString^ Name(
    HtmlHelper^ html,
    String^ name
)
static member Name : 
        html:HtmlHelper *
        name:string -> MvcHtmlString
<ExtensionAttribute>
Public Shared Function Name (
    html As HtmlHelper,
    name As String
) As MvcHtmlString

Parameters

  • name
    Type: System.String

    An expression that identifies the object that contains the name.

Return Value

Type: System.Web.Mvc.MvcHtmlString

The full HTML field name for the object that is represented by the expression.

See Also

NameExtensions Class
System.Web.Mvc.Html Namespace

Return to top