Class HtmlAttribute
Describes an attribute of HTML tag. Use HtmlAttribute to describe a non-standand html attributes.
Inheritance
System.Object
HtmlAttribute
Namespace: AxaFrance.WebEngine.Web
Assembly: AxaFrance.WebEngine.Web.dll
Syntax
public class HtmlAttribute
Constructors
| Improve this Doc View SourceHtmlAttribute()
Creates an instance of Html Attribute
Declaration
public HtmlAttribute()
HtmlAttribute(String)
Creates an instance of Html Attribute with name initialized.
Declaration
public HtmlAttribute(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name |
HtmlAttribute(String, String)
Creates an instance of Html Attribute with name and value initialized.
Declaration
public HtmlAttribute(string name, string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | |
System.String | value |
Properties
| Improve this Doc View SourceName
The name of the html attribute
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Value
The value of the html attribute
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String |